Search found 22 matches

by AthiraM
Thu Mar 22, 2007 5:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Job - Error in compiling job at transformer stage
Replies: 5
Views: 5612

Hi, Changed the query as follows and its working: if Substrings(cms_p11d.ORDERNO,1,1) = 'R' then 'Reallocation Order' else if Substrings(cms_p11d.ORDERNO,1,1) = 'S' then 'STH Car Order' else if Substrings(cms_p11d.ORDERNO,1,1) = '0' then 'New Car Order' else if Substrings(cms_p11d.ORDERNO,1,1) = '1'...
by AthiraM
Wed Mar 21, 2007 11:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Job - Error in compiling job at transformer stage
Replies: 5
Views: 5612

DataStage Job - Error in compiling job at transformer stage

Hi , The datastage job in figure shows compile time error at the transformer stage. http://img444.imageshack.us/my.php?image=dsjobvc4.jpg As in figure I have an input column cms_p11d.orderno which I map to two columns in the output table. One mapping of the input column is used with an if statement....
by AthiraM
Wed Mar 14, 2007 2:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage Director
Replies: 9
Views: 3324

Yes ..thats right..i am facing the same issue with all the threads.
by AthiraM
Tue Mar 13, 2007 9:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage Director
Replies: 9
Views: 3324

I tried clicking the "Mark Topic : Resolved" button many times. :(
Still the status is currently open .
Is there anything else that needs to be done?

Athira
by AthiraM
Tue Mar 13, 2007 9:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage Director
Replies: 9
Views: 3324

Done.. its working...thankyou.
by AthiraM
Mon Mar 12, 2007 2:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage Director
Replies: 9
Views: 3324

Datastage Director

Hi,

Within the Datastage Director from the main menu Job -> Cleanup Resources option is not active for any of the jobs. Please do let me know the scenarios when the same would be active.

Athira
by AthiraM
Fri Mar 09, 2007 3:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORA OCI stage and Oracle sequence
Replies: 10
Views: 5332

Its working..... :)
The destination table already had some data that was inserted w/o using sequence (for the primary key column) and when i tried to insert data using sequence it created all the mess.
once again all the inputs were really very valuable for a beginner.

Thanks a lot
Athira
by AthiraM
Thu Mar 08, 2007 8:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORA OCI stage and Oracle sequence
Replies: 10
Views: 5332

Thankyou for the valuable inputs. I am checking with the sequence.

Athira
by AthiraM
Wed Mar 07, 2007 11:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORA OCI stage and Oracle sequence
Replies: 10
Views: 5332

The primary key of the table is vom_order_no and the primary key contraint is named ODB.VOM_ORDER_NO_PK1, a sequence is used to populate it as in query below INSERT INTO ODB.VAS_ORDER_MASTER_NEW (VOM_ORDER_NO,VOM_CUSTOMER_EIN,VOM_SUBMITTED_DT,VOM_START_DT,VOM_ACTUAL_END_DT,VOM_ORDER_TYPE,VOM_MONTHLY...
by AthiraM
Wed Mar 07, 2007 10:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORA OCI stage and Oracle sequence
Replies: 10
Views: 5332

ORA OCI stage and Oracle sequence

Hi, I am using a sequence in a user defined sql query to insert data into an Oracle table using ORA OCI stage. But only a very few data is getting inserted saying "unique key constraint has violated", are there any issues using the sequence in a user defined sql in an ORA OCI ? The job des...
by AthiraM
Wed Mar 07, 2007 10:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage job - runtime error ORA-01036
Replies: 21
Views: 13475

I have tried that out many a times :)
by AthiraM
Wed Mar 07, 2007 4:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage job - runtime error ORA-01036
Replies: 21
Views: 13475

Yes, I believe the topic can be marked as resolved.

Thanks
Athira
by AthiraM
Wed Mar 07, 2007 3:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage job - runtime error ORA-01036
Replies: 21
Views: 13475

sorry i didnt get that statement , i tried it out now ... anyways the ORA-01036 is no longer popping up.. it gave me a new warning and a fatal error :) The warning : ORA1..Oracle_OCI_3: INSERT INTO ODB.VAS_ORDER_MASTER_NEW (VOM_ORDER_NO,VOM_CUSTOMER_EIN,VOM_SUBMITTED_DT,VOM_START_DT,VOM_ACTUAL_END_D...
by AthiraM
Wed Mar 07, 2007 2:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage job - runtime error ORA-01036
Replies: 21
Views: 13475

I already do have the sequence created in the Oracle database. An insert statement into the oracle database should include the sequence which is mandatory I believe, please correct me if wrong. So when defining the insert query in the stage how will the query be ( with the sequence also specified) ?
by AthiraM
Wed Mar 07, 2007 1:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage job - runtime error ORA-01036
Replies: 21
Views: 13475

How can then the sequence be used?

When using ODBC stages I did create user-defined query where sequences where used and it did work fine, in that case i didn't mention the column in the ODBC stage.