COBOL Programming :: RE: Random Password (in string format) generation.
Author: RahulG31 Subject: Reply to: Random Password (in string format) generation. Posted: Fri Sep 02, 2016 9:47 pm (GMT 5.5) I don't want to disturb the high level talks but I like Mr. Woodger's idea....
View ArticleDB2 :: RE: Masking Db2 data
Author: Rohit Umarjikar Posted: Fri Sep 02, 2016 10:18 pm (GMT 5.5) I think , you can make a use of seq# , I would advice you to talk to DBA in this matter also look CREATE MASK if that is what you...
View ArticleDB2 :: RE: Masking Db2 data
Author: enrico-sorichetti Subject: Reply to: Masking Db2 data Posted: Fri Sep 02, 2016 10:32 pm (GMT 5.5) the create mask IIRC is NOT PCI compliant the unmasked data will still be present into the...
View ArticleCOBOL Programming :: RE: Random Password (in string format) generation.
Author: Robert Sample Posted: Sat Sep 03, 2016 12:54 am (GMT 5.5) The Enterprise COBOL RANDOM intrinsic function is an interesting function. It returns COMP-1 or COMP-2 (short floating point or long...
View ArticleCOBOL Programming :: RE: Random Password (in string format) generation.
Author: Bill Woodger Subject: Reply to: Random Password (in string format) generation. Posted: Sat Sep 03, 2016 1:32 am (GMT 5.5) ARITH(EXTEND) generally affects precision of floating-point results...
View ArticleCOBOL Programming :: RE: Random Password (in string format) generation.
Author: Robert Sample Posted: Sat Sep 03, 2016 1:45 am (GMT 5.5) Yeah, I use ARITH(EXTEND) for most of my tests -- when I get a chance, I'll see about rerunning my tests without...
View ArticleSYNCSORT :: RE: Sequence number add in SORT
Author: sergeyken Posted: Sat Sep 03, 2016 11:18 pm (GMT 5.5) More clear and more flexible would be using the parameter EDIT:Code:....,ADD,+1,EDIT=(TTTTTT),...._________________Tyrannosaurus-REXX
View ArticleCLIST & REXX :: save SAY var loop.
Author: italo_pm Subject: save SAY var loop. Posted: Sun Sep 04, 2016 3:06 am (GMT 5.5) I want to know how I can do extract the result from syslog i interrogating a CICS via syslog with this command:...
View ArticleCLIST & REXX :: RE: save SAY var loop.
Author: Akatsukami Posted: Sun Sep 04, 2016 3:52 am (GMT 5.5) Suggestions as to what? Please be clearer about what your problem is._________________Data is not information. Information is not...
View ArticleCOBOL Programming :: RE: Wildcard logic in COBOL
Author: sergeyken Posted: Sun Sep 04, 2016 4:07 am (GMT 5.5) COBOL is not good idea to deal with character strings, in any manner. C/C++ is much more convenient to do this as shown in previous post. If...
View ArticleCOBOL Programming :: RE: how to DYNAMICALLY write sort cond to o/p file using...
Author: sergeyken Posted: Sun Sep 04, 2016 4:16 am (GMT 5.5) In my humble opinion, the Team Leader who suggested to create SORT statements from sequential file instead of doing JOIN in SORT step - he...
View ArticleCOBOL Programming :: RE: how to DYNAMICALLY write sort cond to o/p file using...
Author: Rohit Umarjikar Posted: Sun Sep 04, 2016 4:41 am (GMT 5.5) Haha.. ðThat's what I thought about the approach._________________Regards, Rohit Umarjikar"Knowledge is knowing that a tomato is a...
View ArticleCLIST & REXX :: RE: save SAY var loop.
Author: sergeyken Posted: Sun Sep 04, 2016 5:43 am (GMT 5.5) Please clarify clearly how the structure of your output should look like? Your post includes a lot of code, but lacks of clarity, or a...
View ArticleDB2 :: SQL Query optimization.
Author: arunsoods Subject: SQL Query optimization. Posted: Sun Sep 04, 2016 6:27 am (GMT 5.5) Hi Team, While executing below query I am getting 8175.5351 as cost when i am checking through EXPLAIN in...
View ArticleDB2 :: RE: SQL Query optimization.
Author: Bill Woodger Subject: Reply to: SQL Query optimization. Posted: Sun Sep 04, 2016 1:36 pm (GMT 5.5) What do you want to do with that MAX value? Can't you store the value somewhere when you know...
View ArticleDB2 :: RE: SQL Query optimization.
Author: Nic Clouston Posted: Sun Sep 04, 2016 2:12 pm (GMT 5.5) Why are you using SQL to put it into 2 variables? Put it into one and then copy it to the other in your program. Have you got an index on...
View ArticleCLIST & REXX :: RE: save SAY var loop.
Author: mistah kurtz Posted: Sun Sep 04, 2016 8:21 pm (GMT 5.5) Guessing from the topic title and Quote:I want to know how I can do extract the result from syslog andQuote:how to write the output in PS...
View ArticleDB2 :: RE: SQL Query optimization.
Author: arunsoods Posted: Sun Sep 04, 2016 11:35 pm (GMT 5.5) Thanks Bill and Nic for replying... Nic - If i create INDEX as below on the table CREATE INDEX INX_SEQ_ID ON test_table (SEQ_ID) and then...
View ArticleDB2 :: RE: SQL Query optimization.
Author: arunsoods Subject: Re: Reply to: SQL Query optimization. Posted: Sun Sep 04, 2016 11:40 pm (GMT 5.5)Bill Woodger wrote: Can't you store the value somewhere when you know it, rather than lazily...
View ArticleDB2 :: RE: SQL Query optimization.
Author: mistah kurtz Posted: Sun Sep 04, 2016 11:56 pm (GMT 5.5)Quote:Will this reduce the cost...?? Quote:Will this work...??? what stops you from trying?
View Article