Search found 9 matches

by sjacobk
Thu Feb 16, 2006 10:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: MQ plugins
Replies: 2
Views: 1581

Ooops I am sorry.. It was a typo .. I meant Datastage 6.0
by sjacobk
Wed Feb 15, 2006 4:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: MQ plugins
Replies: 2
Views: 1581

MQ plugins

I am using Datastage 6.2 version. Do this version has MQTOPIC plugins and JMS plugins.
by sjacobk
Tue Jun 28, 2005 3:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job aborts after 754K recs with Aggregator: %s
Replies: 20
Views: 8673

We faced a similar problem once. It was because one of the lookup link was fetching a large amount of data and the operations defined in the transformer was failing. You try to see the performance statistics in the designer while the job runs and see any of your look up links really stucks while pro...
by sjacobk
Tue Jun 28, 2005 3:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Integrity constraint violated - parent key not found
Replies: 6
Views: 6565

I feel you need to find out why data is not there in the parent table. The Constraints are defined in the table to ensure data integrity. If you miss records as the result of an integrity constraint violation, I feel we need to find out why the required data is not found in the parent table. If the ...
by sjacobk
Tue Jun 28, 2005 2:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORA-01410: invalid ROWID Error
Replies: 10
Views: 31178

Thanks for the Info. I will have some investigations on this line.

But still, all the time, when this happened, on the second attempt the job went fine. Now I am suspecting whether we miss some data.
by sjacobk
Tue Jun 28, 2005 11:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File Different
Replies: 3
Views: 1892

If you are not doing a lookup inside your job, create a sequential file first. And later when the hash file is required create the hash file. I think you need to specify all the six keys when you create the hash file. Hash file is just like a table and the keys acts as if it is the primary mentioned...
by sjacobk
Tue Jun 28, 2005 9:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORA-01410: invalid ROWID Error
Replies: 10
Views: 31178

ORA-01410: invalid ROWID Error

A few of our jobs that runs in production daily, sometimes get aborted with the following error. "JobNAme..IPInvoiceLkp.IDENT3: ORA-01410: invalid ROWID". If we reset and rerun, the job will complete successfully. Can anybody help us to sort it out. What I don't understand is, why it runs ...
by sjacobk
Mon Jun 27, 2005 4:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS_log file
Replies: 10
Views: 5263

If you just want to see data of RT_LOG table of a particular job, you can use DataStage Administrator. From Administrator choose the project and click on the execute command. In the resulting window give the following command. SELECT @ID,TYPE,WAVE.NO,TIMESTAMP,MSG.ARGS,MSG.TEXT,FULL.TEXT,SEVERITY FR...
by sjacobk
Mon Jun 27, 2005 1:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Line Terminators
Replies: 4
Views: 3200

Re: CR/LF Problem

The following OConv conversion will replace all control characters by a "."

OConv(The Field,"MCP")

Smitha