Search found 231 matches

by DS_SUPPORT
Wed Jul 30, 2008 7:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Output link opens, even if the job aborts
Replies: 11
Views: 3567

I need to run this job parallely (Allow Multiple Instance). If i use sequential file, i may get error , because sequential file cannot be accessed by multiple processes. And the other thing is, i have to update the flags in the Hashed file, based upon the keys. In Sequential file, i cannot achieve t...
by DS_SUPPORT
Wed Jul 30, 2008 6:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Table getting locked when trying to update a table
Replies: 12
Views: 5138

Introduce, Sequential File or IPC before the Target Stage, That might solve the problem.
by DS_SUPPORT
Wed Jul 30, 2008 5:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Output link opens, even if the job aborts
Replies: 11
Views: 3567

Output link opens, even if the job aborts

I am having an issue, even if the job aborts, the output link from a Hashed File Stage opens, and processing certain (100) rows. I dont want to process, if the Job aborts, because i am doing some business caluclations in that link. My job design , looks like DRS 1-------->IPC----------> TRANSFORMER1...
by DS_SUPPORT
Tue Jul 29, 2008 12:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Case Insensitive Replace
Replies: 6
Views: 3564

Excellent Ray, Cool and Superb Solution. Thanks a lot.

I have to add UpCase , for the source string also, then only i am getting the desired output.

Code: Select all

Temp3 = Ereplace(UpCase(SourceString),Temp1,Temp2,-1,0) 
by DS_SUPPORT
Mon Jul 28, 2008 7:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Case Insensitive Replace
Replies: 6
Views: 3564

No , the input might not be same format always, I just give that example for a better clarity.
by DS_SUPPORT
Mon Jul 28, 2008 4:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Case Insensitive Replace
Replies: 6
Views: 3564

Case Insensitive Replace

Gurus, Is there any way to replace a set of characters, case INsensitively. For ex, My input can be Hash_CRC_TABLE1 HASH_crc_Table2 My output should be Hash_TST_TABLE1 HASH_TST_Table2 I can convert the input to uppercase or lower case , and replace the string, but I want to maintain the case for oth...
by DS_SUPPORT
Mon Jul 14, 2008 7:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Communication between Jobs using env variables
Replies: 8
Views: 3403

If you want to pass values from job1 to job2, then specify a job parameter in job2, and pass the value from job1. For passing the values, you can consider writing the value to userstatus in job1 or write it to a hashed file and retrive it in job2. For doing this, you might require to use sequence jo...
by DS_SUPPORT
Fri Jul 04, 2008 1:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Increment Row value by 1
Replies: 4
Views: 2431

You can use @INROWNUM in your derivation directly, if you dont want to continue from the last used value.

And if you want to use from your last used value, consider writing the final value to a Hashed File, and pass the value as job parameter for the next run.
by DS_SUPPORT
Tue Jul 01, 2008 9:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Repository Interface error during import
Replies: 2
Views: 1834

If you checked the OMIT option while logging in , uncheck it and login by giving userid and password.

I hope , if you reimport it will clear the old entries and create the jobs again.
by DS_SUPPORT
Wed Jun 25, 2008 9:18 pm
Forum: General
Topic: Estimation templare required
Replies: 5
Views: 3631

I dont know any other ways, you need to get access from the author only.
by DS_SUPPORT
Wed Jun 25, 2008 2:22 am
Forum: General
Topic: Estimation templare required
Replies: 5
Views: 3631

Vincent Mc Burney has written a article on ittoolbox , please check whether it is useful.

And there was a another doc, but now it is password protected. Check with the author , whether you can have access.
by DS_SUPPORT
Fri Jun 20, 2008 4:51 am
Forum: General
Topic: How to get list of jobs used in a sequence?
Replies: 3
Views: 1851

This can be done by doing a select in DS_JOBOBJECTS, Kim Duke has posted the code already. Do a Search, alternatively you can open the jobcontrol of the Sequence, and look at the first part. If you have followed some naming conventions for your jobs, it would be easy to extract from there.
by DS_SUPPORT
Wed Jun 18, 2008 11:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Tool to export jobs without their related shared container
Replies: 15
Views: 7554

How we can schedule the exports from Manager? Can you refer to any documents?
by DS_SUPPORT
Wed Jun 11, 2008 10:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is it possible to automate the DataStage export of an entire
Replies: 12
Views: 6586

Check in Kim Dukes website, he is having a batch utility to export all the projects in a server.
by DS_SUPPORT
Fri May 30, 2008 5:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to implement oracle lead function in datastage
Replies: 7
Views: 7963

Could You please expalin, how you want your output? You can always do it by using Stage Variables. For ex, if the following is your requirement, i will order by salary in descending and do the calculations in the stage variables The following example uses the LEAD function to return the salary from ...