Search found 7 matches

by florry372
Wed Jan 08, 2025 2:21 am
Forum: Other Mainframe Topics, Off-Topics, FAQs.
Topic: Is it possible to access vsam from a java program running on Linux or windows?
Replies: 2
Views: 5999
United States of America

Re: Is it possible to access vsam from a java program running on Linux or windows?

Yes, it's possible! You can use JCICS if your Java program is interacting with a CICS region that accesses the VSAM files. Alternatively, for direct access, consider using JDBC with a middleware or APIs like IBM's JZOS or MQ for integration. It depends on your architecture and connectivity setup.
by florry372
Wed Jan 08, 2025 2:21 am
Forum: Interview Questions.
Topic: JCL Interview question.
Replies: 2
Views: 3539
United States of America

Re: JCL Interview question.

Temporary datasets vanish with the abend, so restarting from step 2 isn't an option. Always a good reminder to use permanent datasets for critical steps if restartability matters.
by florry372
Wed Jan 08, 2025 2:17 am
Forum: CICS, Middleware and MQ Series.
Topic: copy error while doing a new copy in CICS region,
Replies: 4
Views: 5117
United States of America

Re: copy error while doing a new copy in CICS region,

Nothing beats that moment when a technical hiccup gets resolved, especially in CICS. Props to Anuj for the detailed steps, classic example of knowledge sharing saving the day!
by florry372
Mon Jan 06, 2025 6:01 am
Forum: Ask for Job Guidance and referrals here.
Topic: Restarting career.
Replies: 3
Views: 4913
United States of America

Re: Restarting career.

I've been through the process of restarting a career after a break, and updating my resume was one of the hardest parts. Hiring systems like ATS can filter out resumes before anyone even sees them, and I didn't know how to handle that at first. What worked for me was getting professional help to rew...
by florry372
Fri Dec 27, 2024 11:36 am
Forum: Interview Questions.
Topic: Finding a random number using COBOL.
Replies: 2
Views: 1893
United States of America

Re: Finding a random number using COBOL.

You can use INSPECT to locate the position of numeric values or specific patterns in the string. Once found, REFERENCE MODIFICATION can extract the contact number. For more complex data, combining UNSTRING and EVALUATE conditions could help navigate through the input logically.
by florry372
Fri Dec 27, 2024 11:34 am
Forum: IBM COBOL, GnuCOBOL (OpenCOBOL), OOCobol.
Topic: convert data from zoned decimal to packed decimal
Replies: 5
Views: 5026
United States of America

Re: convert data from zoned decimal to packed decimal

Yes, it’s possible! You can use a similar approach to what Zum mentioned. Move the zoned decimal value to a formatted field, then into a packed decimal field for calculations. Just ensure the format matches exactly when moving back and forth to avoid data truncation or errors.
by florry372
Fri Dec 27, 2024 11:33 am
Forum: Other Mainframe Topics, Off-Topics, FAQs.
Topic: Copy all GDG from prod to test.
Replies: 2
Views: 4188
United States of America

Re: Copy all GDG from prod to test.

You can use IDCAMS with the REPRO command or a batch job using IEBGENER to copy all GDG versions. Just ensure you specify

Code: Select all

GDG ORDERED
or manage the base catalog definitions properly.

Go to advanced search