Search found 53125 matches
- Tue Mar 29, 2016 5:18 pm
- Forum: General
- Topic: ExeCmd always execute SERIALLY within a single Sequence Job
- Replies: 9
- Views: 2588
- Tue Mar 29, 2016 5:14 pm
- Forum:
- Topic: Data Lineage Best Practices
- Replies: 4
- Views: 4244
- Tue Mar 29, 2016 5:09 pm
- Forum: Site/Forum
- Topic: Premium Membership Not Activated
- Replies: 6
- Views: 11374
I have send multiple emails to membership.director@dsxchange.com, editor@dsxchange.net, rick@dsxchange.net, but i didn't get any response. If possible, moderators can you please forward this message to owner. Is there any other means that i can communicate to owner? These are the only email address...
- Mon Mar 28, 2016 11:18 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Dynamic vertical pivot issue
- Replies: 14
- Views: 6235
Heck, you don't need any of that fancy stuff. Been over-thinking the problem. Just some plain ol' If..Then.Else constructs will do it easily if there are only the three choices. For example the derivation of Equity would be
Code: Select all
If InLink.Category = "Equity" Then InLink.Max Else 0- Mon Mar 28, 2016 7:15 pm
- Forum: General
- Topic: ExeCmd always execute SERIALLY within a single Sequence Job
- Replies: 9
- Views: 2588
To run a command in the background, add an ampersand after the query. To submit the command asynchronously (that is, to make sure that it doesn't die because it can't contact its parent), use the nohup command. For example:
Code: Select all
nohup echo "Dummy Heading" > #jpFilePath# &- Mon Mar 28, 2016 7:11 pm
- Forum:
- Topic: IGC not updating job characteristics
- Replies: 6
- Views: 3789
- Fri Mar 25, 2016 5:46 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Vertical pivot design challenge
- Replies: 15
- Views: 5521
- Fri Mar 25, 2016 5:39 pm
- Forum: General
- Topic: Center of Excellence Poll
- Replies: 5
- Views: 2424
- Thu Mar 24, 2016 4:06 am
- Forum: General
- Topic: Sequencer 'SQY' was entered, but never exited
- Replies: 11
- Views: 4542
- Wed Mar 23, 2016 4:41 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Lookup vs. Join
- Replies: 6
- Views: 5986
- Wed Mar 23, 2016 4:34 pm
- Forum: General
- Topic: value of parameters from file
- Replies: 10
- Views: 5180
- Tue Mar 22, 2016 1:34 pm
- Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
- Topic: Can we trigger sequence or multiple parallel jobs in ISD job
- Replies: 1
- Views: 6198
- Mon Mar 21, 2016 9:38 pm
- Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
- Topic: REST 2.0 Service in ISD
- Replies: 6
- Views: 8772
- Mon Mar 21, 2016 5:43 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Memory Usage
- Replies: 3
- Views: 2062
There is not, at least not within DataStage. DataStage jobs run as processes. There may be operating system tools that can restrict the memory demanded by (or supplied to) a particular process, but these are not part of DataStage. Surely the better solution would be to detect the abnormal condition ...
- Sun Mar 20, 2016 3:08 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Parallel job hangs in string extraction in DS 11.3.1.2
- Replies: 10
- Views: 4987
Try entering the experssion as a single line, without linefeeds. If DSLink2.varc1 [14,16] <= ' ' Then 'Msg 1' Else If DSLink2.varc1 [46,9] <= ' ' Then 'Msg 2' Else If DSLink2.varc1 [58,8] <= ' ' Then 'Msg 3' Else 'OK' There is an upper limit on the complexity of a nested If..Then..Else expression, b...