JCL & VSAM :: RE: FTP - JCL failed while passing FTP commands in dataset
Author: Robert Sample Posted: Wed Nov 16, 2016 8:13 pm (GMT 5.5) First, the 696 step condition code is 99000 modulo 4096 (which is the standard way z/OS handles codes larger than 4095). So telling us...
View ArticleIMS DB/DC :: RE: IMS Database backup info
Author: ashek15 Posted: Wed Nov 16, 2016 11:37 pm (GMT 5.5) Hi Enrico, Peter Thanks for suggestions! Is there a way to query RECON datasets to gather backup info? Thanks_________________I am a DB2 DBA
View ArticleIMS DB/DC :: RE: IMS Database backup info
Author: enrico-sorichetti Subject: Reply to: IMS Database backup info Posted: Thu Nov 17, 2016 2:00 am (GMT 5.5)Quote:Is there a way to query RECON datasets to gather backup info? Thanks why not take a...
View ArticleIMS DB/DC :: RE: IMS Database backup info
Author: ashek15 Subject: Reply to: IMS Database backup info Posted: Thu Nov 17, 2016 2:46 am (GMT 5.5) Enrico - Thanks for your reply. I already searched manuals before putting this post, but could not...
View ArticleJCL & VSAM :: RE: FTP - JCL failed while passing FTP commands in dataset
Author: Suneetha1612 Posted: Thu Nov 17, 2016 7:24 am (GMT 5.5) Hi... Thanks for your reply. I have checked the the data in file. There are no edited and line numbers from 73 to 80. My Job is having 2...
View ArticleJCL & VSAM :: RE: FTP - JCL failed while passing FTP commands in dataset
Author: Robert Sample Posted: Thu Nov 17, 2016 7:36 am (GMT 5.5)Quote:And i think I have provided the complete infoYou have not shown us: - the JCL you are using - the output of the first step - the...
View ArticleIMS DB/DC :: RE: IMS Database backup info
Author: PeterHolland Posted: Thu Nov 17, 2016 10:27 am (GMT 5.5) There are LIST RECON commands. Documented in the manuals. The RECON contains info about image copy datasets, but no info about failed...
View ArticleJCL & VSAM :: RE: FTP - JCL failed while passing FTP commands in dataset
Author: Suneetha1612 Posted: Thu Nov 17, 2016 11:50 am (GMT 5.5) Hi My JCL is Code:--------------------------------------------------------------------------- //STEP2 EXEC SAS,COND=(0000,NE)...
View ArticleJCL & VSAM :: RE: FTP - JCL failed while passing FTP commands in dataset
Author: Bill Woodger Subject: Reply to: FTP - JCL failed while passing FTP commands in dataset Posted: Thu Nov 17, 2016 12:27 pm (GMT 5.5) You have no explicit SYSIN DD for your SAS step. You have no...
View ArticleDB2 :: Db2 SQL query to convert rows into columns
Author: subratarec Subject: Db2 SQL query to convert rows into columns Posted: Thu Nov 17, 2016 4:51 pm (GMT 5.5) Hi All, Need your help/suggestion on below query. Could someone please share his/her...
View ArticleDB2 :: RE: Db2 SQL query to convert rows into columns
Author: Nic Clouston Posted: Thu Nov 17, 2016 7:04 pm (GMT 5.5) This same question has been asked on the beginners forum, I suggest yoou go there and follow that topic. To get there, if you do not...
View ArticleDB2 :: RE: Db2 SQL query to convert rows into columns
Author: Marso Posted: Thu Nov 17, 2016 7:17 pm (GMT 5.5) If the number of "Dept_name" is fixed and known, then you could write:Code:SELECT CASE DEPT_NAME WHEN...
View ArticleJCL & VSAM :: RE: FTP - JCL failed while passing FTP commands in dataset
Author: Robert Sample Posted: Thu Nov 17, 2016 7:37 pm (GMT 5.5) It is possible that USERID.CNTL(SIGNON) is causing your problem; since you didn't list it, who knows? What is the LRECL of USERID.CNTL?...
View ArticleDFSORT/ICETOOL :: Convert +9999999999999.99 to S9(12)V9(3)
Author: vnktrrd Subject: Convert +9999999999999.99 to S9(12)V9(3) Posted: Thu Nov 17, 2016 8:15 pm (GMT 5.5) Hi, I have a value like +9999999999999.99 which I want to convert to S9(12)V9(3). After the...
View ArticleDFSORT/ICETOOL :: RE: Convert +9999999999999.99 to S9(12)V9(3)
Author: Arun Raj Posted: Thu Nov 17, 2016 8:21 pm (GMT 5.5) You have 13 9s before the decimal point in the example and you want to read it with 9(12)?. Anyways look here for examples on SFF...
View ArticleDFSORT/ICETOOL :: RE: Convert +9999999999999.99 to S9(12)V9(3)
Author: Bill Woodger Subject: Reply to: Convert +9999999999999.99 to S9(12)V9(3) Posted: Thu Nov 17, 2016 9:43 pm (GMT 5.5) If that is your data, you can just hard-code the PD value. Since that is...
View ArticleDB2 :: RE: Db2 SQL query to convert rows into columns
Author: Rohit Umarjikar Posted: Thu Nov 17, 2016 10:06 pm (GMT 5.5)Quote:However, this kind of coding is absolutely not recommended: a new department would requires changes in the query. This is the...
View ArticleDFSORT/ICETOOL :: RE: Convert +9999999999999.99 to S9(12)V9(3)
Author: vnktrrd Subject: Reply to: Convert +9999999999999.99 to S9(12)V9(3) Posted: Thu Nov 17, 2016 10:17 pm (GMT 5.5) Hi Bill, Yes the data is fixed except for the sign which may be + or - . I have...
View ArticleDFSORT/ICETOOL :: RE: Convert +9999999999999.99 to S9(12)V9(3)
Author: Bill Woodger Subject: Reply to: Convert +9999999999999.99 to S9(12)V9(3) Posted: Thu Nov 17, 2016 10:33 pm (GMT 5.5) How do you define the field you MOVE to the S9(12)V9(3)? Your BUILD is...
View ArticleDFSORT/ICETOOL :: RE: Convert +9999999999999.99 to S9(12)V9(3)
Author: vnktrrd Subject: Reply to: Convert +9999999999999.99 to S9(12)V9(3) Posted: Thu Nov 17, 2016 10:34 pm (GMT 5.5) with hex on it looks like below.Code: FFFFFFFFFFFFFFD 000003772306939[/code]
View Article