Author |
Message |
Topic: Merge multiple records to single record |
NorthernDancer
Replies: 5
Views: 3293
|
Forum: Utilities Posted: Fri Jul 22, 2016 9:00 am Subject: Merge multiple records to single record |
It appears that your input data consists of an "owner" (1st record with the key), and followed by 1-M "members" in sort of a "set". So I would create a new "scann ... |
Topic: SPUFI Update Table Columns |
NorthernDancer
Replies: 4
Views: 3884
|
Forum: Database Posted: Tue Mar 01, 2016 4:31 pm Subject: SPUFI Update Table Columns |
Yeh, I just slapped it together to test it and zap some test rows. I like your way a lot better and neater. I didn't actually know you could leave so many blanks on separate cards and it still pars ... |
Topic: SPUFI Update Table Columns |
NorthernDancer
Replies: 4
Views: 3884
|
Forum: Database Posted: Mon Feb 29, 2016 3:49 pm Subject: SPUFI Update Table Columns |
Thank You Sir, this is it easily as you said..............
UPDATE DB2T.OUR_CUST
SET HUB_CUST_ID =
CHAR('HUB-'||SUBSTR& ... |
Topic: SPUFI Update Table Columns |
NorthernDancer
Replies: 4
Views: 3884
|
Forum: Database Posted: Fri Feb 26, 2016 11:17 am Subject: SPUFI Update Table Columns |
I want to use SPUFI if possible to plug some columns with test data. And I want to Concatenate like parts of 2 existing columns together. So the new data becomes easily recognized. Say for example 1s ... |
Topic: FTP TRANSMIT FROM PC TO z/OS |
NorthernDancer
Replies: 2
Views: 2399
|
Forum: Utilities Posted: Wed Dec 02, 2015 5:39 pm Subject: FTP TRANSMIT FROM PC TO z/OS |
Is anyone quite familiar with Sending a file from a PC up to a Mainframe z/OS system ?? I'm quite OK with the reverse direction using GET 'mainframe dsname' xxxxxxxx.csv for example. I know it is P ... |
Topic: Easytive MACRO Library |
NorthernDancer
Replies: 3
Views: 3729
|
Forum: Application Programming Posted: Mon Oct 26, 2015 3:21 pm Subject: Easytive MACRO Library |
It has been quite a while since I used it, but I think it was //PANDD1 or //EZTMAC, that defines the MACROs. So try //PANDD1 DD DSN=TCH.PROD.EZTP ,DISP=SHR in your JOB; and make sure you have L ... |
Topic: Squeeze trailing spaces |
NorthernDancer
Replies: 9
Views: 7546
|
Forum: Application Programming Posted: Thu Sep 03, 2015 11:55 am Subject: Squeeze trailing spaces |
I use this SYNCSORT statement to get rid of Leading Blanks; I don't know if there is a SHIFT=RIGHT that does Trailing; never looked it up...
SORT FIELDS=COPY
... |
Topic: Creating New TRAILER Record |
NorthernDancer
Replies: 1
Views: 2209
|
Forum: Utilities Posted: Mon Aug 17, 2015 11:47 am Subject: Creating New TRAILER Record |
I'm creating a nice Trailer record using SYNCSORT here & these statements:
//SYSIN DD *
MERGE FIELDS=COPY
OUTFIL FILES=OUT,
T ... |
Topic: DMS/OS BATCH RESTORE ERROR |
NorthernDancer
Replies: 1
Views: 3280
|
Forum: Utilities Posted: Tue Apr 21, 2015 9:46 am Subject: DMS/OS BATCH RESTORE ERROR |
Running a JCL conversion Job on test machine; getting failure saying No Index Entry; yet dataset is ARCHIVE and DMS/OS Entry shows valid;
CDW08D.QSD1981O.CRBKUP.G0005V00 ... |
Topic: IBM CONNECT DIRECT FILE XFR MAINFRAME |
NorthernDancer
Replies: 2
Views: 6587
|
Forum: Other Technical Topics Posted: Mon Feb 23, 2015 1:21 pm Subject: IBM CONNECT DIRECT FILE XFR MAINFRAME |
THX I got it. NEW is just that, expects destination file to not exist; RPL is to overlay and existing file; MOD will append to existing file. |
Topic: IBM CONNECT DIRECT FILE XFR MAINFRAME |
NorthernDancer
Replies: 2
Views: 6587
|
Forum: Other Technical Topics Posted: Tue Feb 17, 2015 1:34 pm Subject: IBM CONNECT DIRECT FILE XFR MAINFRAME |
Finding a new File Transfer Job that Sends a File from z/OS to a Gateway Server they call it. There is a COPY function used with a DISP parameter of "NEW" . What does that mean ?? If the s ... |
Topic: COBOL Combined Condition |
NorthernDancer
Replies: 15
Views: 15164
|
Forum: Application Programming Posted: Fri Jul 06, 2012 9:31 am Subject: COBOL Combined Condition |
This combination is ALWAYS confusing. But somehow IBM comes out with NOT AND NOT = OR; NOT OR NOT = AND. I try to use the +VE tests when possible. Can't always do that though. If it's a code valu ... |
Topic: Cursor using JOIN and FOR UPDATEM OF |
NorthernDancer
Replies: 4
Views: 4653
|
Forum: Database Posted: Tue Jul 03, 2012 12:45 pm Subject: Cursor using JOIN and FOR UPDATEM OF |
Decide which Table is the Main Source for the Update and use it as a Driver. If you expect 1 Row only, then Use SELECT. If > 1 row Use DECLARE CURSOR and FETCH. Use the result from that to SELEC ... |
Topic: TESTCOB UNDER z/OS |
NorthernDancer
Replies: 1
Views: 3917
|
Forum: Application Programming Posted: Fri Jun 22, 2012 9:16 am Subject: TESTCOB UNDER z/OS |
XPEDITOR is not here @ this site. TESTCOB is here, at least the Command is still here. I haven't used it in quite a long long time. So I don't remember all the setups with the Listing file, Object F ... |
Topic: EXIT. vs CONTINUE. |
NorthernDancer
Replies: 9
Views: 10480
|
Forum: Application Programming Posted: Thu Jun 21, 2012 3:10 pm Subject: EXIT. vs CONTINUE. |
I would never use a structure like DEEPDOO in a Production Commercial Application. Has too many GO TOs in it defeating the purpose of part of the original posting. Yikes reminds me of some awful Hone ... |
|