Search found 53125 matches

by ray.wurlod
Tue Mar 29, 2016 5:18 pm
Forum: General
Topic: ExeCmd always execute SERIALLY within a single Sequence Job
Replies: 9
Views: 2588

Investigate the jobs command to determine what background process(es) you have running. Keep executing this till your list is exhausted.
by ray.wurlod
Tue Mar 29, 2016 5:14 pm
Forum:
Topic: Data Lineage Best Practices
Replies: 4
Views: 4244

My best two "best practices", apart from "know your metadata" (Ernie's favourite) would be: (1) make sure DataStage developers use only shared table definitions (2) use consistent naming conventions (any one thing has the same name everywhere These will limit the amount of manual...
by ray.wurlod
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...
by ray.wurlod
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
by ray.wurlod
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# &
by ray.wurlod
Mon Mar 28, 2016 7:11 pm
Forum:
Topic: IGC not updating job characteristics
Replies: 6
Views: 3789

What happens if you submit am IGC query specifying the old type for the parameter?
by ray.wurlod
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

Actually you could build arbitrary comma-delimited lists in the loop, then expand them if required using a Column Import stage.
by ray.wurlod
Fri Mar 25, 2016 5:39 pm
Forum: General
Topic: Center of Excellence Poll
Replies: 5
Views: 2424

We set up an Information Management Centre of Excellence in the Department of Defence (Australia) some eight years back, concentrating on data quality issues and techniques. It is still in operation, gathering to its bosom more and more parts of the Department's information assets.
by ray.wurlod
Thu Mar 24, 2016 4:06 am
Forum: General
Topic: Sequencer 'SQY' was entered, but never exited
Replies: 11
Views: 4542

Could the user variable used by NES_NEW_LINE never be being set to 0?
by ray.wurlod
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

If you are in an SMP environment, "Entire" partitioning is managed via a single copy in shared memory, so there's no "copy all rows to all nodes" involved. To use a Lookup stage the only restriction is that the reference data must fit in memory. You can time shift building of the...
by ray.wurlod
Wed Mar 23, 2016 4:34 pm
Forum: General
Topic: value of parameters from file
Replies: 10
Views: 5180

I have many scenarios where the values files are updated from activities invoked from a controlling sequence before being used in job invoked from the same sequence.
by ray.wurlod
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

Yes you can. The easiest way is to use a server job that invokes the DSRunJob routine from a Transformer stage.
by ray.wurlod
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

To help us to diagnose, can you please be specific about how you set up the service in an Information Services Director project? Also please mention what you tried that failed to find the service.
by ray.wurlod
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 ...
by ray.wurlod
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...