IDMS/ADSO :: RE: Using Ca-Culprit and IDMS
Author: Kryptster Subject: Reply to: Using Ca-Culprit and IDMS Posted: Fri Oct 14, 2016 10:50 pm (GMT 5.5) Hi Martin, Is the query resolved? If so can you pls let me know how? I am facing the similar...
View ArticleIDMS/ADSO :: RE: Using Ca-Culprit and IDMS
Author: Akatsukami Posted: Fri Oct 14, 2016 11:04 pm (GMT 5.5) Do you really expect an answer after more than a year?_________________Data is not information. Information is not knowledge. Knowledge is...
View ArticleDB2 :: RE: Get correct date and time when current time is over 12 hrs
Author: Robert Sample Posted: Fri Oct 14, 2016 11:42 pm (GMT 5.5) You are getting precisely what you told the computer you wanted:Code:SELECT CAST(VARCHAR_FORMAT(GREGORIAN_DATE,'MM/DD/YYYY') AS...
View ArticleDB2 :: RE: Get correct date and time when current time is over 12 hrs
Author: Rohit Umarjikar Posted: Fri Oct 14, 2016 11:58 pm (GMT 5.5) Try,Code: select case when current time - 1 Hour <= '23:59:59' then VARCHAR_FORMAT(current date - 1 day,'MM/DD/YYYY')  else...
View ArticleDB2 :: RE: Get correct date and time when current time is over 12 hrs
Author: Arun Raj Posted: Sat Oct 15, 2016 12:11 am (GMT 5.5)Rohit Umarjikar wrote:case when current time - 1 Hour <= '23:59:59' I might be missing something. but won't this be always...
View ArticleDB2 :: RE: Get correct date and time when current time is over 12 hrs
Author: Rohit Umarjikar Posted: Sat Oct 15, 2016 12:28 am (GMT 5.5) That's right!!, How about this?Code: select  case when (current time > '23:59:59' AND        current time   <=...
View ArticleDB2 :: RE: Get correct date and time when current time is over 12 hrs
Author: enrico-sorichetti Subject: Reply to: Get correct date and time when current time is over 12 hrs Posted: Sat Oct 15, 2016 1:21 am (GMT 5.5) why the Code:- 1 wouldn' t Code:current time <=...
View ArticleDB2 :: RE: Get correct date and time when current time is over 12 hrs
Author: Rohit Umarjikar Posted: Sat Oct 15, 2016 1:43 am (GMT 5.5) Took out -1(assuming"fetch sales data for every past 1 hour" done before) but I guess range is still needed, after 24:00:00 even...
View ArticleDB2 :: RE: Get correct date and time when current time is over 12 hrs
Author: Arun Raj Posted: Sat Oct 15, 2016 1:59 am (GMT 5.5)Rohit Umarjikar wrote:How about this?Code: select  case when (current time > '23:59:59' Will this ever be true?_________________Arun...
View ArticleDB2 :: RE: Get correct date and time when current time is over 12 hrs
Author: Rohit Umarjikar Posted: Sat Oct 15, 2016 2:07 am (GMT 5.5) I realize now that I can't think of good, it is Friday too. I should go home better After all your comments , this should work and...
View ArticleDB2 :: RE: Get correct date and time when current time is over 12 hrs
Author: prino Posted: Sat Oct 15, 2016 2:11 am (GMT 5.5) Has anyone actually thought about what happens if the job is held up and doesn't run until 2 hours later? 'nuff said..._________________Robert...
View ArticleDB2 :: RE: Run stats processing on zIIP Engine
Author: vasanthz Posted: Sat Oct 15, 2016 2:39 am (GMT 5.5)Quote:Are there any pointers how we can move DB2 utilities to run on zIIP engine? My two cents.. DB2 controls what and how much of that work...
View ArticleCOBOL Programming :: RE: cobol embedded sql
Author: Nic Clouston Posted: Sat Oct 15, 2016 2:43 am (GMT 5.5) Which COBOL are you using?_________________Regards Nic
View ArticleDB2 :: RE: Run stats processing on zIIP Engine
Author: vasanthz Posted: Sat Oct 15, 2016 2:45 am (GMT 5.5)Quote:Also, the z13 provides symmetric multithreading (SMT) support for zIIP specialty engines. The use of SMT can provide significantly more...
View ArticleCOBOL Programming :: RE: cobol embedded sql
Author: Bill Woodger Subject: Reply to: cobol embedded sql Posted: Sat Oct 15, 2016 2:56 am (GMT 5.5) Rohit, you didn't translate the biiiiiiiiiiggg_column. Seems to me the column is, well, big, and...
View ArticleDB2 :: RE: Run stats processing on zIIP Engine
Author: Robert Sample Posted: Sat Oct 15, 2016 5:22 am (GMT 5.5)Quote:Oh does that mean zIIP would have more throughput than a GP for certain work?The zIIP doesn't have the full functionality of a CP,...
View ArticleDFSORT/ICETOOL :: output data in CSV Format
Author: janmejay Subject: output data in CSV Format Posted: Sat Oct 15, 2016 2:16 pm (GMT 5.5) hello my reqmt is dump the data in CSV format in output file. I have declared my output file structure...
View ArticleCOBOL Programming :: output data in CSV Format
Author: janmejay Subject: output data in CSV Format Posted: Sat Oct 15, 2016 2:20 pm (GMT 5.5) hello my reqmt is dump the data in CSV format in output file. I have declared my output file structure...
View ArticleDFSORT/ICETOOL :: RE: output data in CSV Format
Author: enrico-sorichetti Subject: Reply to: output data in CSV Format Posted: Sat Oct 15, 2016 2:21 pm (GMT 5.5) since You did not post also the code all You did is whine that something did not behave...
View ArticleCOBOL Programming :: RE: output data in CSV Format
Author: enrico-sorichetti Subject: Reply to: output data in CSV Format Posted: Sat Oct 15, 2016 2:23 pm (GMT 5.5) same answer...
View Article