Search found 2456 matches

by Anuj Dhawan
Sun Dec 17, 2023 2:21 pm
Forum: DevOps for Mainframes and related news
Topic: explain the key components of the IBM DevOps toolchain and their roles in the software development lifecycle.
Replies: 2
Views: 4396
India

Re: explain the key components of the IBM DevOps toolchain and their roles in the software development lifecycle.

This question is way too broad. However, listed below is overview of the key components of the IBM DevOps toolchain and their roles in the software development lifecycle (SDLC). IBM UrbanCode Deploy (UCD): Role: UCD is a crucial component for automating the deployment process. It enables continuous ...
by Anuj Dhawan
Fri Dec 15, 2023 12:54 am
Forum: Other Mainframe Topics, Off-Topics, FAQs.
Topic: 🎄✨ Celebrate the Season with Our Festive Forum Makeover! ✨🎄
Replies: 12
Views: 5173
India

🎄✨ Celebrate the Season with Our Festive Forum Makeover! ✨🎄

🎄 Merry Christmas and Happy Holidays 🎄 🎉✨ This time of the year is special—it's a time for joy, togetherness, and the spirit of giving. To make our online home reflect the festive cheer, I am excited to introduce the all-new Christmas theme that will adorn our forum throughout this magical season. ...
by Anuj Dhawan
Thu Dec 14, 2023 10:28 pm
Forum: DevOps for Mainframes and related news
Topic: What is IBM DevOps?
Replies: 2
Views: 6438
India

Re: What is IBM DevOps?

DevOps (“development” and “operations”), in general, is the combination of practices and tools designed to increase an organization's ability to deliver applications and services faster than traditional software development processes. As such, I'd say, IBM DevOps also refers to a set of practices, t...
by Anuj Dhawan
Sun Dec 03, 2023 12:02 am
Forum: Ask for Job Guidance and referrals here.
Topic: 3rd party payroll company experience
Replies: 2
Views: 2649
India

Re: 3rd party payroll company experience

Assuming you are talking about India - it should all be fine, as long as the 3rd party is a registered entity.

Hope this helps,
by Anuj Dhawan
Fri Dec 01, 2023 1:14 pm
Forum: Other Mainframe Topics, Off-Topics, FAQs.
Topic: enable screen numbering on a mainframe session
Replies: 2
Views: 3468
India

Re: enable screen numbering on a mainframe session

Unless 'am mistaken, you most likely are talking about SCRNAME, please have a look at below and see if this helps: Causes the logical screen in which the command is entered to be given the screen name specified. The name can be any set of 2 to 8 characters that conform to member naming rules, except...
by Anuj Dhawan
Tue Nov 28, 2023 11:10 pm
Forum: zCloud Computing and related news
Topic: mainframe system can access api in AWS?
Replies: 3
Views: 6824
India

Re: mainframe system can access api in AWS?

The short answer is "yes". For a long answer, please provide with some details.
by Anuj Dhawan
Tue Nov 28, 2023 11:09 pm
Forum: Other Mainframe Topics, Off-Topics, FAQs.
Topic: general doubt on Outlook.
Replies: 1
Views: 1922
India

Re: general doubt on Outlook.

You might want to talk to your site-support group for outlook, to get the .pst files stored for you. Or you may do it yourself if you've the admin access.
by Anuj Dhawan
Mon Nov 27, 2023 6:12 pm
Forum: IBM COBOL, GnuCOBOL (OpenCOBOL), OOCobol.
Topic: Setting up JNI for calling Java from COBOL on z/OS
Replies: 14
Views: 4309
India

Re: Setting up JNI for calling Java from COBOL on z/OS

On z/OS, when linking a COBOL program that calls external functions like JNI_CreateJavaVM from a shared library or DLL, the resolution of these JNI external names is typically handled through the linkage editor, which is responsible for combining object modules and resolving external references. In ...
by Anuj Dhawan
Sat Nov 18, 2023 12:40 am
Forum: IBM DB2 and IMS DB/DC
Topic: How to get top 5 rows from table thru SQL?
Replies: 4
Views: 2374
India

Re: How to get top 5 rows from table thru SQL?

DB2 on mainframes, you can use the FETCH FIRST clause to retrieve a specific number of rows from a table. Here's an example of how you can get the top 5 rows from a table in SQL: SELECT * FROM your_table_name FETCH FIRST 5 ROWS ONLY; If you are looking for data based on a specific column, an "O...
by Anuj Dhawan
Sat Nov 18, 2023 12:33 am
Forum: IBM COBOL, GnuCOBOL (OpenCOBOL), OOCobol.
Topic: Setting up JNI for calling Java from COBOL on z/OS
Replies: 14
Views: 4309
India

Re: Setting up JNI for calling Java from COBOL on z/OS

Thanks for sharing what worked for you, appreciate it.
by Anuj Dhawan
Sun Nov 12, 2023 9:12 pm
Forum: Suggestions & Feedback : About the website.
Topic: Happy Diwali!
Replies: 1
Views: 2746
India

Re: Happy Diwali!

Happy Diwali everyone! :)
by Anuj Dhawan
Mon Oct 30, 2023 10:28 am
Forum: Other Mainframe Topics, Off-Topics, FAQs.
Topic: converting mainframe input to json
Replies: 1
Views: 1495
India

Re: converting mainframe input to json

Converting mainframe input to JSON to feed an API involves several steps. Mainframes typically use fixed-length or delimited formats for their data, while APIs often expect data in JSON format. Here's a general outline of the process: Data Extraction from Mainframe: Extract the data from the mainfra...
by Anuj Dhawan
Sat Oct 07, 2023 10:45 pm
Forum: IBM COBOL, GnuCOBOL (OpenCOBOL), OOCobol.
Topic: JCL Compiler COBOL 6+
Replies: 6
Views: 1874
India

Re: JCL Compiler COBOL 6+

vagner.bellacosa wrote: Sat Oct 07, 2023 2:36 am
They recently changed to version 6.3, but my compilation jobs no longer work.
Along with what zum13 said, when you say, "jobs no longer work" - what happens, any error you get? Could you share the message/s from failed run?
by Anuj Dhawan
Wed Sep 06, 2023 4:17 pm
Forum: IBM DFSort, ICETOOL, ICEMAN, ICEGENER.
Topic: Difference between inrec and outrec.
Replies: 4
Views: 1600
India

Re: Difference between inrec and outrec.

As the name suggests - INREC is processed before the records are sorted, merged or copied. OUTREC is processed after the records are sorted, merged or copied. One might argue that for SORT FIELDS=COPY INREC and OUTREC are just same -- it can be true unless INREC and OUTREC are used in the same SORT.
by Anuj Dhawan
Wed Sep 06, 2023 3:39 pm
Forum: IBM DFSort, ICETOOL, ICEMAN, ICEGENER.
Topic: Apply odd and even number in records of a file.
Replies: 4
Views: 2362
India

Re: Apply odd and even number in records of a file.

You can use SEQNUM,m,f to create sequence numbers of various lengths in various formats. You can use START=j to start the sequence numbers at j instead of 1. You can use INCR=i to increment each sequence number by i instead of 1. You can use RESTART=(p,m) to start the sequence number at the starting...
by Anuj Dhawan
Fri Aug 25, 2023 10:23 pm
Forum: Other Mainframe Topics, Off-Topics, FAQs.
Topic: "permission denied please try again" while doing SSH.
Replies: 6
Views: 2115
India

Re: "permission denied please try again" while doing SSH.

As zum13 has said, there are number of dots which should get connected well to make SSH working. Without much information and logs, it's tough to help. Please answer the following questions: 1. Is the mainframe you are working with, has SSH daemon running? 2. Are the SSH keys generated and in sync? ...
by Anuj Dhawan
Tue Aug 22, 2023 3:17 pm
Forum: Other Mainframe Topics, Off-Topics, FAQs.
Topic: mainframe modernization project
Replies: 5
Views: 2804
India

Re: mainframe modernization project

A crude answer is - yes, they are development based. However, that inherently means anything which is "developed" at a given point in time, needs to be "maintained" later on -- unless, the given entity is out of business later.
by Anuj Dhawan
Tue Aug 22, 2023 2:47 pm
Forum: IBM DFSort, ICETOOL, ICEMAN, ICEGENER.
Topic: Apply odd and even number in records of a file.
Replies: 4
Views: 2362
India

Re: Apply odd and even number in records of a file.

Without much info on hand about the details of data you are working with, SEQNUM can work for you:

Code: Select all

SORT FIELDS=(1,length,CH,A)
OUTREC OVERLAY=(81:SEQNUM,5,ZD)
This will add a sequence number of length 5 at position 81.

Go to advanced search