Search found 3329 matches

by Sainath.Srinivasan
Wed Jul 20, 2005 9:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file Look up
Replies: 3
Views: 682

You can say
If IsNULL(Col) Then 'N' Else 'Y'
by Sainath.Srinivasan
Wed Jul 20, 2005 3:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transformer Error
Replies: 6
Views: 1271

You need to provide more information. Currently all you are saying is that you have a job which aborts. So how come you expect anyone to resolve your issue.
by Sainath.Srinivasan
Wed Jul 20, 2005 2:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: migration
Replies: 3
Views: 1019

Unless and otherwise you have any basic scripts that are not version compatable, I assume you can migrate without difficulty.
by Sainath.Srinivasan
Tue Jul 19, 2005 9:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Week Number in Year
Replies: 8
Views: 1649

Maybe for first week no falling fully on either past or present year.
by Sainath.Srinivasan
Tue Jul 19, 2005 8:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: failed to open RT_STATUS42file
Replies: 8
Views: 3212

That is because your DS indexes is corrupted. Do a DS.REINDEX ALL from the project via DS Admin or uvsh.
by Sainath.Srinivasan
Tue Jul 19, 2005 8:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job sequence problem
Replies: 4
Views: 955

Did you try re-running the sequence?
by Sainath.Srinivasan
Tue Jul 19, 2005 7:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Week Number in Year
Replies: 8
Views: 1649

Week conversion is done taking partial week into consideration.
by Sainath.Srinivasan
Tue Jul 19, 2005 4:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job sequence problem
Replies: 4
Views: 955

You may have included an option in the job runtime config setting to run for 100 rows in Limit.
by Sainath.Srinivasan
Tue Jul 19, 2005 3:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS Job & dll library
Replies: 10
Views: 2081

It is part of the dsjob dlls that comes as online manuals pdf.
by Sainath.Srinivasan
Tue Jul 19, 2005 2:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error while calling a job from Job Control Code
Replies: 14
Views: 6643

You can also load your param file in memory and them use scripts to process them. But ensure that your passwords are properly encrypted or hidden.
by Sainath.Srinivasan
Tue Jul 19, 2005 2:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS Job & dll library
Replies: 10
Views: 2081

The dlls and their usage mechanism are explained clearly in the manual
by Sainath.Srinivasan
Tue Jul 19, 2005 2:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Lookup to multiple rows
Replies: 4
Views: 898

If both are seq files, try using merge stage. You can otherwise use ODBC and enable multiple rows to be returned.
by Sainath.Srinivasan
Tue Jul 19, 2005 1:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sporadic Problems with DSDetachJob() call
Replies: 9
Views: 2770

Were any other person changing - e.g. compiling - the job when you are trying to execute your script?

Did you change the DS configuration for files and locks? - if they run fine for low number and fail at certain level.
by Sainath.Srinivasan
Mon Jul 18, 2005 1:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error while calling a job from Job Control Code
Replies: 14
Views: 6643

No.

JobHandle = IsNull(DSAttachJob(TempJobName, DSJ.ERRFATAL))

If IsNULL(JobHandle) Then
Write message
Error ??
End

SetParam
by Sainath.Srinivasan
Mon Jul 18, 2005 1:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error while calling a job from Job Control Code
Replies: 14
Views: 6643

Include a check of job handle being null.