Search found 2466 matches

by Anuj Dhawan
Wed Aug 21, 2024 5:07 pm
Forum: Introduce Yourself and Share Your IT Experience.
Topic: MyOggradio
Replies: 3
Views: 508
India

Re: MyOggradio

Hi Christian, Welcome to the community! It's wonderful to have someone with your extensive experience on board. It’s interesting to hear about your journey from VSE to z/OS (and yes, I believe it was still referred to as MVS around that time!). Mainframe environments have indeed seen incredible evol...
by Anuj Dhawan
Fri Aug 02, 2024 10:01 pm
Forum: Other Mainframe Topics, Off-Topics, FAQs.
Topic: Java Profiler unter z/OS
Replies: 7
Views: 744
India

Re: Java Profiler unter z/OS

This topic got me curious, so I looked into it further. Here are some more Java profiler tools that support mainframes. Check them out and see if they help you: 1. IBM Health Center Overview : A lightweight profiling and monitoring tool that comes with IBM SDK for Java. It provides insights into the...
by Anuj Dhawan
Thu Aug 01, 2024 9:33 pm
Forum: Other Mainframe Topics, Off-Topics, FAQs.
Topic: Java Profiler unter z/OS
Replies: 7
Views: 744
India

Re: Java Profiler unter z/OS

I don't have experience with it - however did a research - here are some examples and resources for Java profilers and tools that can be used with z/OS, see if this helps: JProfiles : Website : JProfiles Details : JProfiler is a commercial tool but offers a free trial. It supports profiling Java app...
by Anuj Dhawan
Thu Jul 11, 2024 6:45 pm
Forum: Other Mainframe Topics, Off-Topics, FAQs.
Topic: How to change my password zmainframes.com ??
Replies: 1
Views: 611
India

Re: How to change my password zmainframes.com ??

Follow this link for password reset: user/forgot_password

Username can not be changed your own. If you require it, send a PM to me.
by Anuj Dhawan
Tue Jun 25, 2024 8:49 pm
Forum: Other Mainframe Topics, Off-Topics, FAQs.
Topic: Remove Job from CA7 abend queue.
Replies: 2
Views: 965
India

Re: Remove Job from CA7 abend queue.

Here are a couple of approaches you could consider to address this issue: Modify Job Configuration: If the return code 4 is expected under certain conditions and does not actually indicate a critical error that needs addressing, you could modify the job's definition in CA7 to accept a return code of...
by Anuj Dhawan
Thu Jun 06, 2024 11:14 pm
Forum: DevOps for Mainframes and related news
Topic: DevOps for Mainframes
Replies: 2
Views: 1009
India

Re: DevOps for Mainframes

Part of your question is pretty open ended, though I'll try to answer. By adopting DevOps practices, mainframe operations can become more agile, reduce deployment times, and improve reliability, making the platform more attractive to newer talent and bridging the skills gap. To learn DevOps for main...
by Anuj Dhawan
Mon May 27, 2024 12:44 pm
Forum: Assembler & PL/I.
Topic: How to learn assembler?
Replies: 2
Views: 1254
India

Re: How to learn assembler?

Along with what capital has suggested, you might also like to see:

viewtopic.php?p=663#p663
viewtopic.php?t=94
by Anuj Dhawan
Tue May 21, 2024 6:08 pm
Forum: DevOps for Mainframes and related news
Topic: What is DevOps in mainframes?
Replies: 2
Views: 798
India

Re: What is DevOps in mainframes?

DevOps isn't inherently different between mainframes and open source systems. It's a set of practices and philosophies that can be applied to both. However, there are some key distinctions due to the nature of the underlying platforms: Tools and Technologies: Mainframes: Traditionally rely on propri...
by Anuj Dhawan
Tue May 21, 2024 12:36 pm
Forum: SyncSort, SyncTool, SyncGener.
Topic: Question on MERGE in SORT.
Replies: 2
Views: 887
India

Re: Question on MERGE in SORT.

Hi,

You might want to show the actual SORT statements you have used, that'll help.
by Anuj Dhawan
Thu May 09, 2024 6:36 pm
Forum: CICS, Middleware and MQ Series.
Topic: What are CICS web services?
Replies: 4
Views: 1218
India

Re: What are CICS web services?

CICS Web Services act as a bridge between your existing CICS programs and the modern web world. They allow you to expose functionalities of your CICS applications as web services, following standard protocols like SOAP or JSON. Imagine CICS applications as islands of functionality. Traditionally, t...
by Anuj Dhawan
Wed Apr 24, 2024 2:42 pm
Forum: JCL - Job Control Language.
Topic: Return code 1000 in JCL.
Replies: 1
Views: 1997
India

Re: Return code 1000 in JCL.

You should be looking at what program is executed by the JCL, you are referring to.
by Anuj Dhawan
Mon Apr 15, 2024 1:34 pm
Forum: SyncSort, SyncTool, SyncGener.
Topic: how to removes spaces in file using sorT?
Replies: 4
Views: 2296
India

Re: how to removes spaces in file using sorT?

Try, untested:

Code: Select all

SORT FIELDS=COPY
INREC BUILD=(1,80,SQZ=(SHIFT=LEFT))
 
by Anuj Dhawan
Sat Mar 23, 2024 10:08 pm
Forum: JCL - Job Control Language.
Topic: get the current system date through JCL ?
Replies: 10
Views: 2359
India

Re: get the current system date through JCL ?

You can try using symbol converter EZACFSM1, as zum13 has indicated. One example is here of using symbol converter: viewtopic.php?p=3998#p3998
by Anuj Dhawan
Thu Mar 14, 2024 7:11 pm
Forum: JCL - Job Control Language.
Topic: get the current system date through JCL ?
Replies: 10
Views: 2359
India

Re: get the current system date through JCL ?

Try this, using sort:

Code: Select all

//SYSIN DD *
SORT FIELDS=COPY
OUTREC FIELDS=(5:&DATE1,13:&TIME2)
/*
by Anuj Dhawan
Tue Feb 27, 2024 4:42 pm
Forum: IBM DB2 and IMS DB/DC
Topic: In DB2, how to know date/time a particular Database was put to RO?
Replies: 3
Views: 1637
India

Re: In DB2, how to know date/time a particular Database was put to RO?

Hi SaurabhGaur, Welcome to the forums!I've created a new post for your question to help you get the best possible attention. It's generally recommended to start new threads for new questions, and then link to any relevant previous discussions within your post, which you've looked at. This helps othe...
by Anuj Dhawan
Tue Feb 27, 2024 11:41 am
Forum: CICS, Middleware and MQ Series.
Topic: Web services in CICS,
Replies: 1
Views: 1359
India

Re: Web services in CICS,

Please have a look at below resources to enhance your knowledge of web services in CICS: IBM Knowledge Center: This is the official source for CICS documentation from IBM. It offers comprehensive information on web services, including: CICS and web services overview:   https://www.ibm.com/docs/SSGMC...
by Anuj Dhawan
Thu Feb 15, 2024 5:58 pm
Forum: Other Mainframe Topics, Off-Topics, FAQs.
Topic: What could be the reason for S722 abend?
Replies: 8
Views: 2127
India

Re: What could be the reason for S722 abend?

Bobbie V" wrote: Thu Feb 15, 2024 12:49 pm
Will check, do we have manuals on this site?
This might help for some topics: manuals
by Anuj Dhawan
Thu Feb 15, 2024 5:34 pm
Forum: Other Mainframe Topics, Off-Topics, FAQs.
Topic: What could be the reason for S722 abend?
Replies: 8
Views: 2127
India

Re: What could be the reason for S722 abend?

S722 abend (Abend Subcode 0722) in IBM z/OS environments signifies that an output limit has been exceeded. This means that a job or process produced more data than allowed by the configured limits. Common Causes: Exceeded OUTLIM keyword on SYSOUT DD statement:  This specifies the maximum output for...
by Anuj Dhawan
Tue Feb 13, 2024 11:34 pm
Forum: Other Mainframe Topics, Off-Topics, FAQs.
Topic: scope of mainframe technology still relevant.
Replies: 3
Views: 1390
India

Re: scope of mainframe technology still relevant.

Hi, Just a friendly heads-up that adding unrelated questions to existing threads can sometimes derail the conversation and make it tough for everyone to follow along. I've noticed this happening quite frequently, and I've split your recent question from https://www.zmainframes.com/viewtopic.php?t=45...

Go to advanced search