Search found 262 matches

by asitagrawal
Wed Feb 13, 2008 5:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Warning in transformer
Replies: 27
Views: 11622

waht is happening inside the transformer ? it would be better, if you share what the job is doing (you can support with a diagram of the job) please..
by asitagrawal
Wed Feb 13, 2008 5:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Concatenating multiple rows from the same column
Replies: 11
Views: 6894

Hi Ray,

Could you please help me to understand the approach suggested by you.

In a similar case, I had already used the approach suggested by Chulett i.e using the hashed file.
by asitagrawal
Wed Feb 13, 2008 4:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Weired behaviour of sequence job
Replies: 7
Views: 2385

Time to mark the topic as "Resolved" please :)
by asitagrawal
Tue Feb 12, 2008 7:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Pre-load file to memory-- HASHFILE STAGE
Replies: 9
Views: 4258

With Respect to DataStage, it is "HASHED FILE STAGE"... :!:
by asitagrawal
Tue Feb 12, 2008 6:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to add trailer records?
Replies: 6
Views: 1492

Time to mark the thread as "Resolved" :)
by asitagrawal
Tue Feb 12, 2008 6:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Weired behaviour of sequence job
Replies: 7
Views: 2385

Job1--<Check Trigger Condition>-->JobSeq_new---<Check the trigger condition>---->JobUpdateControlTable You can check the status of JobSeq_new... If all the 25 jobs, Job2 to Job 26 have finished , then only the status of JobSeq_new would be finished and the control will be transfered to the next ite...
by asitagrawal
Tue Feb 12, 2008 6:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Naming a file with the current timestamp?
Replies: 8
Views: 3518

Timestamp and OConv, IConv can be combined together to acheive the results...
by asitagrawal
Tue Feb 12, 2008 6:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: remove space
Replies: 7
Views: 1821

time to mark the topic as "Resolved" please :)
by asitagrawal
Tue Feb 12, 2008 6:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Pre-load file to memory-- HASHFILE STAGE
Replies: 9
Views: 4258

Re: Pre-load file to memory-- HASHFILE STAGE

aaha_naga wrote:Which thing is used to increase the performance in hash file stage?
"Enable write to cache" , "Preload file to memory" can be configured to enhance the performance of hashed file stage

Best would be to go through the Server Job Developer's Guide.
by asitagrawal
Mon Feb 11, 2008 4:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Weired behaviour of sequence job
Replies: 7
Views: 2385

Is it possible to post the job design ? I mean the figure of the job design.. In case you want to trigger all job2 to Job26 in parallel , then you may create another Job Sequence and place all the 26 jobs in that.. but none connected to each other (so that they are triggered in parallel) . I am sugg...
by asitagrawal
Thu Feb 07, 2008 5:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unique constraint violation
Replies: 4
Views: 5349

Sample SQLs would help to understand the case better :)
by asitagrawal
Thu Feb 07, 2008 5:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can I have a job that checks to see if a job is running?
Replies: 9
Views: 4643

The DELETE FROM TABLE will be efficient, if the table is EXCLUSIVELY accessible for the job that issues the DELETE FROM ... SQL. You may issue a LOCK TABLE < table name > IN EXCLUSIVE MODE (DB native formats may differ) as a Before SQL . Also, COMMIT must be issued after the DELETE is successful. To...
by asitagrawal
Thu Feb 07, 2008 5:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Drastic slowdown of large hash file lookups
Replies: 4
Views: 2042

Check the "Tunables" settings for the project and the jobs.
by asitagrawal
Thu Feb 07, 2008 5:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to disable NLS configuration
Replies: 5
Views: 6003

Please mark the topic as "Resolved" if the issue is reolved :)
by asitagrawal
Thu Feb 07, 2008 5:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: want to the job sequence repeatedly until particular time
Replies: 6
Views: 2249

Adding to my last post only..
Start the loop with a default inital value and set the "To" value to a value returned by a routine. The routine will always increment the "To" variables value.

HTH.