Search found 358 matches

by loveojha2
Mon Sep 11, 2006 3:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Phantom Erorr
Replies: 3
Views: 1240

What warning message are you getting from the server job? Does your sequence doing something else also like calling a routine? The error says its unable to start the next job (Do a select * from DS_JOBS where JOBNO='192' ), OR may be the other job is not having a compiled status :? (Check and confirm)
by loveojha2
Mon Sep 11, 2006 3:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Last Record
Replies: 11
Views: 3142

What about an update after the load, like

Code: Select all

update tgt set b=null where a=(select max(a) from tgt)
by loveojha2
Mon Sep 11, 2006 3:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date Range Lookups
Replies: 10
Views: 6545

If we mention KEY1 and KEY2 alone as key columns in the Hashed file , then the values can be overwritten Instead of Hashed File use Universe Stage with Key1 and Key2 as keys not the date column. Select multi row lookup as checked. Once rows are looked up (more than one may be), check for the date c...
by loveojha2
Wed Sep 06, 2006 12:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashfile-name
Replies: 3
Views: 2023

You need to create a pointer to the Hashed file so that it would have entry in the VOC file and after that you can access it using the pointer name, instead of the pathed file.
by loveojha2
Tue Sep 05, 2006 11:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to call an oracle sequence in transformer stage?
Replies: 2
Views: 1710

It would be possible only through a Routine. Which would handle the call to the Oracle for the sequence.

But why such a requirement :?
by loveojha2
Tue Sep 05, 2006 10:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ": ds_uvput() - Write failed for record id '38890'"
Replies: 5
Views: 4154

Next day we again executed the same job with userid "A". This time it executed successfully. We are not able to understand why it failed first time. Then why it successfully executed when executed with same userid secod time. One reason could be what Arndw has suggested and the other coul...
by loveojha2
Tue Sep 05, 2006 10:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: creating job statistics from joblog created in datastage
Replies: 11
Views: 6939

Do a Search on ETLStats. Bunch of goodies. 3) How many loaded/updated For this may be you would need to alter your job designs. You would need to have separate links for the inserts and updates(one for insert and the other for update). (Not from the same link) Or may be you would need to maintain th...
by loveojha2
Tue Sep 05, 2006 10:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Search
Replies: 7
Views: 2127

I have a solution.
I don't know whether its right way of doing or not, but it works.

I read the DS_JOBOBJECTS using a Hashed File Stage and use a transformer concate the columns there and search the string in the concated column.

Till now it has worked with 100% success.

Try it. Its fast also.
by loveojha2
Tue Sep 05, 2006 10:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence: No Errors No Response
Replies: 4
Views: 2050

Sequence gives no error but also doens't do anything
How are you claiming it?
Have you seen the log?
Does it show anything suspicious?
Check the Server jobs called, did they run? (may be they aren't even called, because of the trigger condition?)
by loveojha2
Mon Aug 28, 2006 5:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to obtain the starttimestamp of the parent-sequencer
Replies: 15
Views: 8376

Can you really get the handle of the parent job, at a time if a job is running, you can't get its handle. :?
by loveojha2
Mon Aug 28, 2006 3:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: passing parameters in between stages of a sequence
Replies: 7
Views: 2466

Even it can be without having any source, just need to put one stage variable and a constraint to the output link so that it runs atleast once.

Try it.
by loveojha2
Mon Aug 28, 2006 2:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: passing parameters in between stages of a sequence
Replies: 7
Views: 2466

Put in the transformer's derivation (as a job parameter) for the column of the db where you want it finally. That's all about it.
by loveojha2
Mon Aug 28, 2006 12:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: the way to import and export XML file
Replies: 5
Views: 1783

I think dsx is a better choice, if you want to dig information related with jobs or want general modifications, but I guess it should also be possible through xml (but would be complicated, involved and slow (since the size)). Through the manager at the time of export (the export dialog box) check t...
by loveojha2
Fri Aug 18, 2006 3:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to abort the job
Replies: 11
Views: 5559

Explicit call to DSLogFatal would abort the job. You can use it within the stage variable.
by loveojha2
Fri Aug 18, 2006 2:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Rollback in DRS stage
Replies: 5
Views: 1531

Set your transaction size to zero.