DFSORT/ICETOOL :: RE: Syntax to check the first 4 digits of a number.
Author: Bill Woodger Subject: Reply to: Syntax to check the first 4 digits of a number. Posted: Tue May 03, 2016 4:42 pm (GMT 5.5) The problem with using the substring search is that you are open to...
View ArticleCICS :: How LOAD PROGRAM and LOAD on HOLD is said as affinity?
Author: pkmurali Subject: How LOAD PROGRAM and LOAD on HOLD is said as affinity? Posted: Tue May 03, 2016 6:26 pm (GMT 5.5) Dear All, Please let me know, how EXEC CICS LOAD PROGRAM is mentioned as...
View ArticleCICS :: RE: How LOAD PROGRAM and LOAD on HOLD is said as affinity?
Author: Robert Sample Posted: Tue May 03, 2016 6:53 pm (GMT 5.5) First, the IBM references talk about transaction-system affinity and not just transaction affinity. Terminology is critical in IT where...
View ArticleDB2 :: RE: insert the same records but chancing a specific value
Author: danylele74 Subject: Reply to: insert the same records but chancing a specific value Posted: Tue May 03, 2016 6:53 pm (GMT 5.5) This is my queryCode: SELECT REPLACE(col1,'KKK','ZZZ'))Â from...
View ArticleDB2 :: RE: insert the same records but chancing a specific value
Author: Robert Sample Posted: Tue May 03, 2016 7:15 pm (GMT 5.5) Because for the first query you are pulling all records with bank = 'aa' and the second query you restrict the pull to only those...
View ArticleDB2 :: RE: insert the same records but chancing a specific value
Author: RahulG31 Subject: Reply to: insert the same records but chancing a specific value Posted: Tue May 03, 2016 7:53 pm (GMT 5.5) Just to add to what Robert said: In the first query, You are...
View ArticleCICS :: RE: How LOAD PROGRAM and LOAD on HOLD is said as affinity?
Author: Rohit Umarjikar Posted: Tue May 03, 2016 8:28 pm (GMT 5.5) I have already shared this before to you but unfortunately you did not even look at that it seems. I think , you want the answers in...
View ArticleCICS :: RE: How LOAD PROGRAM and LOAD on HOLD is said as affinity?
Author: Bill O'Boyle Subject: Reply to: How LOAD PROGRAM and LOAD on HOLD is said as affinity? Posted: Tue May 03, 2016 8:45 pm (GMT 5.5) LOAD with HOLD is a definite no-no, especially in a DTR...
View ArticleDFSORT/ICETOOL :: RE: Syntax to check the first 4 digits of a number.
Author: Rohit Umarjikar Posted: Tue May 03, 2016 9:45 pm (GMT 5.5) Try this, Code://SORTINÂ DD *Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â 00101 00000995412...
View ArticleCOBOL Programming :: RE: Query on Splitting up a file
Author: Rohit Umarjikar Posted: Tue May 03, 2016 10:02 pm (GMT 5.5) 1.scan the input field byte by byte and as soon as you hit the '"' then replace ',' by ';' till you hit ending '"' and continue this...
View ArticleCOBOL Programming :: RE: How to add % towards the end of my field value
Author: Rohit Umarjikar Posted: Tue May 03, 2016 10:05 pm (GMT 5.5) I wouldn't disagree anymore _________________Regards, Rohit Umarjikar"Some things Man was never meant to know. For everything else,...
View ArticleCOBOL Programming :: RE: How to add % towards the end of my field value
Author: don.leahy Posted: Wed May 04, 2016 12:16 am (GMT 5.5) Trailing blanks in the host variable can be significant if LIKE is used with wildcards. There is a complete discussion...
View ArticleCICS :: READQ TS returning inconsistent address pointer
Author: moezbud Subject: READQ TS returning inconsistent address pointer Posted: Wed May 04, 2016 1:09 am (GMT 5.5) I have a program that is executing a READQ TS that is behaving very strangely. It is...
View ArticleDFSORT/ICETOOL :: RE: Syntax to check the first 4 digits of a number.
Author: Bill Woodger Subject: Reply to: Syntax to check the first 4 digits of a number. Posted: Wed May 04, 2016 1:32 am (GMT 5.5) Rohit, If you INCLUDE/OMIT COND= you can avoid the repeated...
View ArticleDFSORT/ICETOOL :: RE: Syntax to check the first 4 digits of a number.
Author: Rohit Umarjikar Posted: Wed May 04, 2016 1:40 am (GMT 5.5) Thanks for the notes Bill. that makes me learn and improve my dfsort logic. I assumed TS wanted onetime sort card so did try some...
View ArticleCICS :: RE: READQ TS returning inconsistent address pointer
Author: Robert Sample Posted: Wed May 04, 2016 2:10 am (GMT 5.5) What did the Xpediter vendor say when you raised the issue? If you haven't, then why not? How is TEMP-PTR...
View ArticleCICS :: RE: READQ TS returning inconsistent address pointer
Author: Rohit Umarjikar Posted: Wed May 04, 2016 2:16 am (GMT 5.5)Code:SET(ptr-ref) Specifies the pointer reference that is set to the address of the retrieved data. The pointer reference, unless...
View ArticleCICS :: RE: READQ TS returning inconsistent address pointer
Author: Bill O'Boyle Subject: Reply to: READQ TS returning inconsistent address pointer Posted: Wed May 04, 2016 2:18 am (GMT 5.5) Is this TSQ shared by other programs or tasks? If so, then you'll need...
View ArticleCICS :: RE: READQ TS returning inconsistent address pointer
Author: moezbud Subject: Reply to: READQ TS returning inconsistent address pointer Posted: Wed May 04, 2016 2:19 am (GMT 5.5) Thank you, Rohit. I had already looked that up. Unfortunately, it does not...
View ArticleCICS :: RE: READQ TS returning inconsistent address pointer
Author: moezbud Posted: Wed May 04, 2016 2:21 am (GMT 5.5) Thank you, Bill. I will look into that.
View Article