Search found 50 matches

by Thomas.B
Thu Apr 16, 2015 9:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding RCP Enabled Job
Replies: 6
Views: 3471

Did you try to delete the rows using a request like this? DELETE FROM #Parameter A# WHERE #Parameter# IN ( SELECT #Parameter# FROM #Parameter A#,#Parameter B# WHERE A.column=B.column ) Or if that's not too restrictive: DELETE A FROM #Parameter A# A,#Parameter B# B WHERE A.column=B.column Using a Ter...
by Thomas.B
Thu Apr 16, 2015 7:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding RCP Enabled Job
Replies: 6
Views: 3471

If you have to extract the data you want to delete to a DataSet, you can simply use the database connector as output: on the usage menu, set the "Write mode" value to "Delete"
If the column you store in the DataSet is defined as a key, the data will be deleted.
by Thomas.B
Tue Apr 14, 2015 9:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Extract Multiple table
Replies: 1
Views: 1523

A DB2 Connector can only have one "Stream" output, so, you can only create one DataSet at a time.

The easiest way to extract multiple tables to multiple DataSets is to create a generic multiple instance job with the name of the table and the name of the DataSet as parameters.
by Thomas.B
Thu Apr 09, 2015 8:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data Stage CSV column seperation to Multiple rows
Replies: 4
Views: 2112

I use to have the same issue, i had that input : FIELD --------------- AAA;BBB;CCC;DDD AAA;BBB;CCC;DDD And i had to get that output : FIELD --------------- AAA BBB CCC DDD AAA BBB CCC DDD I do it by using a loop on a transformer (i think it's aviable since DataStage 8.5) : I create a Stage Variable ...