Search found 3 matches

by girish312
Mon May 18, 2009 10:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle UPSERT commit intervals
Replies: 3
Views: 2596

OCI Stg-Oracle Upsert - COMMIT for each row in parrallel Job

Hi, This may have been a close thread, but, found this as a related thread and hence would like to get some advise further on my question. Just wondering if is it possible to commit by a single row in parallel job using Oracle OCI or ODBC enterprise stages. I have a situation where in I have to read...
by girish312
Fri Aug 15, 2008 11:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC Enterprise Upsert mode(Delete Then Insert) for DB2
Replies: 0
Views: 1901

ODBC Enterprise Upsert mode(Delete Then Insert) for DB2

Hi, I am trying to figure out the proper way to configure the ODBC EE stage in parallel job to Upsert records into DB2 table. I noticed that when I select "Delete Then Insert option" in upsert mode, when the table is not empty, it is not inserting anything, but deleting all records. I am w...
by girish312
Wed Aug 13, 2008 6:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to process a sequential file containing quotes.
Replies: 15
Views: 48348

Were you able to reslve the answer to schema def issue here?

I have found a possible solution, by running the following awk script on the filter option of the sequential file stage :- awk 'BEGIN{FS=",";OFS=","}{gsub("""","",$2)}1' This script basically strips out the quotes within column 2. Though this has fo...