Search found 38 matches

by DS4DRIVER
Mon Jul 12, 2010 9:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: List all jobs by Invocation Id
Replies: 1
Views: 2450

List all jobs by Invocation Id

Hi, Is there any way to fetch the list of all the jobs that has been invoked by a specific Invocation Id. Example: Job X - Invocation Id 1 Job Y - Invocation Id 1 Job Z- Invocation Id 1 So, i need to find the list of all the jobs whose Invocation Id is 1, that is, Job X, Job Y and Job Z. Thanks
by DS4DRIVER
Thu May 28, 2009 10:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Expression Passed as Job Parameter is not working
Replies: 7
Views: 2911

If I have to use EVAL where do i use it?

Thanks
by DS4DRIVER
Thu May 28, 2009 9:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Expression Passed as Job Parameter is not working
Replies: 7
Views: 2911

The If Else statement is prepared by reading a Table. The number of ranges vary. Today the number of ranges can be 5, tomorrow 6 etc. So, using a Unix script, i prepare this Statement and Pass it to the Job. But, i was not sccessful of what i thought.

Any Ideas?

Thanks.
by DS4DRIVER
Wed May 27, 2009 3:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Expression Passed as Job Parameter is not working
Replies: 7
Views: 2911

Expression Passed as Job Parameter is not working

I have prepared an Expression via Unix script (dynamic in nature based on the number of records in a table that drives the expression) that needs to be used in the Transformer Stage of a job. This expression does not return the result that i am looking for, instead, just outputs the expression itsel...
by DS4DRIVER
Thu Jun 19, 2008 12:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem in Shared Container
Replies: 3
Views: 2408

Problem in Shared Container

Hi, I am reposting this message since i did not get any responses. I am facing 2 problems. 1. I have created few Parallel Shared Containers. In Parallel Stages that are used in these Shared Containers, the Configuration file property is empty and, next to it i see the message - Warning: No configura...
by DS4DRIVER
Tue Jun 17, 2008 8:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Shared Container Issues
Replies: 0
Views: 946

Shared Container Issues

Hi, I am facing 2 problems. 1. I have created few Parallel Shared Containers. In Parallel Stages that are used in these Shared Containers, the Configuration file property is empty and, next to it i see the message - Warning: No configuration file set. But the jobs that use these Shared Containers co...
by DS4DRIVER
Thu Sep 27, 2007 9:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compilation failing at PX Transformer
Replies: 1
Views: 2587

Compilation failing at PX Transformer

Our Dev environment is on 7.5.2 and UAT is on 7.5 I have a job that compiles and runs successfully in Dev and Fails to even Compile in UAT. The following is the Compilation error that is showing up at PX Transformer. Output from transformer compilation follows: ##I TFCN 000001 14:55:42(000) <main_pr...
by DS4DRIVER
Thu Jul 19, 2007 3:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Fatal error in Server job due to ds_uvput()
Replies: 4
Views: 2429

Also, the next time the job ran with teh same source file, it finished successfully.
by DS4DRIVER
Thu Jul 19, 2007 3:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Fatal error in Server job due to ds_uvput()
Replies: 4
Views: 2429

That is not the case.
There are 5 Key fields in the Hash file. All the fields have Values as per the Record.

ds_uvput() - Write failed for record id 'FNAA3070B
1
-70001
2007-07-03
9999-01-01 00:00:00.000000'
by DS4DRIVER
Thu Jul 19, 2007 12:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Fatal error in Server job due to ds_uvput()
Replies: 4
Views: 2429

Fatal error in Server job due to ds_uvput()

While DataStage server was running, the job aborted due to the following Fatal error. The job reads a Sequential file and writes to a Hash file. stg_SUMRY_HST_ins: ds_uvput() - Write failed for record id 'FNAA3070B 1 -70001 2007-07-03 9999-01-01 00:00:00.000000' The job successfully finished in the ...
by DS4DRIVER
Thu Jul 12, 2007 3:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Rounding Decimal values
Replies: 2
Views: 1986

Rounding Decimal values

I use a Routine to Round Decimal values. The code is as follows Value and Digits are the paameters passed to the routine If Digits > 0 then Ans = FIX(Value, Digits) End Else Ans = FIX(Value/100,50)*100 End I also tried PRECISION 14 If Digits > 0 then Ans = FIX(Value, Digits) End Else Ans = FIX(Value...
by DS4DRIVER
Wed Jun 27, 2007 2:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: KBADifferent does not work Fractional part of Dec is 10 dig
Replies: 22
Views: 8465

I am not able to see the full contents of the reply that Ken and Ray posted.
by DS4DRIVER
Tue Jun 26, 2007 2:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: KBADifferent does not work Fractional part of Dec is 10 dig
Replies: 22
Views: 8465

Compare does not work in a situation where the args compared are numbers like 2335567.7700000000 and 2335567.77
by DS4DRIVER
Tue Jun 26, 2007 11:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: KBADifferent does not work Fractional part of Dec is 10 dig
Replies: 22
Views: 8465

PRECISION 14 DataIn1 = TRIM(Arg1) DataIn2 = TRIM(Arg2) If (IsNull(DataIn1) and Not(IsNull(DataIn2))) or (IsNull(DataIn2) and Not(IsNull(DataIn1))) Then Ans = @TRUE End Else If IsNull(DataIn1) and IsNull(DataIn2) Then Ans = @FALSE End Else If (Not(NUM(DataIn1)) and NUM(DataIn2)) Or (Not(NUM(DataIn2)...
by DS4DRIVER
Tue Jun 26, 2007 9:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: KBADifferent does not work Fractional part of Dec is 10 dig
Replies: 22
Views: 8465

Using the following code throws Phantom Warning. The content of the Warning is Program "DSU.FMDifferentExtd": Line 21, Nonnumeric data when numeric required. Zero used. Program "DSU.FMDifferentExtd": Line 21, Nonnumeric data when numeric required. Zero used. Program "DSU.FMD...