Search found 53125 matches

by ray.wurlod
Thu Dec 15, 2011 2:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Logic Help
Replies: 11
Views: 4576

Chaining records is easily done with delimited strings in stage variables. I prefer to use server job or BASIC Transformer and work with dynamic arrays in this case, because there is a really handy function called Locate() - and another called Find() - that can be used to search for a value in a dyn...
by ray.wurlod
Thu Dec 15, 2011 2:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Missing Records when using Join Stage with Datasets
Replies: 10
Views: 5433

How have you confirmed the record count in the Data Set?
by ray.wurlod
Thu Dec 15, 2011 2:39 pm
Forum: General
Topic: Useful Perl Scripts I have written
Replies: 24
Views: 29536

Delightful cleanly written and formatted code. Well done and thank you.
by ray.wurlod
Thu Dec 15, 2011 12:32 am
Forum: General
Topic: Delete logs in directory
Replies: 2
Views: 1114

Alas, you don't delete logs. They're not files. They are rows in database tables, one table per job. You could enable auto-purge, but that would only effect jobs created subsequently. Otherwise you could change the //PURGE.SETTINGS entry in each log table so that auto-purge could kick in next time e...
by ray.wurlod
Thu Dec 15, 2011 12:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Logic Help
Replies: 11
Views: 4576

So you are seeking the complete list of transitions for any input value, through to the endpoint of that list. Does that sound correct?
by ray.wurlod
Thu Dec 15, 2011 12:28 am
Forum: General
Topic: Need info on IBM Infosphere specific to Hadoop and BIG DATA
Replies: 6
Views: 5013

Big Data support ((stage)) in DataStage version 8.7 supports Hadoop file system, but otherwise looks and feels (deliberately) like Sequential File stage.
by ray.wurlod
Thu Dec 15, 2011 12:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: WAVES Concept in Datastage
Replies: 6
Views: 3892

Read in on-line help or manuals about end-of-wave treatment. I think this will answer your questions.
by ray.wurlod
Thu Dec 15, 2011 12:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Insertion of Null Character at position 4095 in File
Replies: 9
Views: 4537

Could COB_COMMENT be (contain) a null-terminated string?
by ray.wurlod
Thu Dec 15, 2011 12:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: odbc setup for mysql database in linux
Replies: 1
Views: 1316

There is a specific driver for MySQL. Look at the prototype supplied in $ODBCINI.
by ray.wurlod
Thu Dec 15, 2011 12:23 am
Forum: Information Analyzer (formerly ProfileStage)
Topic: IA Reports Not Available
Replies: 5
Views: 2686

Have the reports been published?
by ray.wurlod
Wed Dec 14, 2011 6:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Convert HEX ‘00’ padding with an ASCII Blank 0x20
Replies: 4
Views: 4044

Code: Select all

Convert(Char(0),Char(32),InLink.TheString)
or, better, initialize stage variables to the results of the two Char() functions

Code: Select all

Convert(svChar0,svChar32,InLink.TheString)
by ray.wurlod
Wed Dec 14, 2011 2:41 pm
Forum: General
Topic: Invoke more jobs from command line without waiting
Replies: 4
Views: 1412

You need to poll interrogating job status until job status is no longer DSJS.RUNNING.
by ray.wurlod
Wed Dec 14, 2011 2:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: KeyMgtGetNextValueConcurrent routine
Replies: 8
Views: 4341

Did you Search DSXchange for an answer?
This post has three different techniques.
by ray.wurlod
Wed Dec 14, 2011 12:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Enterprise stage and Connector stage in Datastage
Replies: 6
Views: 4718

We're informed that you would choose ODBC Connector, because IBM wants you to prefer Connector technology going forward.
by ray.wurlod
Tue Dec 13, 2011 9:31 pm
Forum: General
Topic: How can I locate and process the last file in a directory?
Replies: 2
Views: 959

That works. Execute it from an Execute Command activity in a sequence and use the output of that directly to provide the value to a job parameter in a Job activity.