Search found 430 matches

by Kirtikumar
Tue Dec 13, 2011 9:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SCD: Record Expire Issue
Replies: 7
Views: 5165

Any suggestion re the issue?
by Kirtikumar
Tue Dec 13, 2011 5:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SCD: Record Expire Issue
Replies: 7
Views: 5165

SCD: Record Expire Issue

Hi, I searched before posting but could not find any solution to the problem I am facing. I am trying to implement SCD Type on Empl data just for checking how the stage works. The table in Oracle has following columns: SurrKey (SurrogateKey) ENo (Buss Key) Ename (Non Key - Type 2) Address(Non Key - ...
by Kirtikumar
Fri Dec 09, 2011 1:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning message at the end..dropping rows
Replies: 6
Views: 10390

Are you doing any division operations in the last transformer? And if so, are he columns used for division have zero or null in them?
by Kirtikumar
Fri Dec 09, 2011 12:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Query reg. Lookup
Replies: 4
Views: 1616

The reason of job getting may be different than the new link. What is the error you are getting? Also after adding 27th Ref link, try removing existing 1/2 ref linked. This way you still with 26 ref. If the job runs fine with the new ref link and with 26 only, then may be limitation of ref links. Bu...
by Kirtikumar
Wed Oct 12, 2011 10:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: BuildOp: Compilation failing with Array
Replies: 2
Views: 1882

After trying out few things, I was able to locate the issue. The input metadata column name was same as the variable and so error was reported.

Once the variable name was changed to make sure it is not same as the metadata, the issue was resolved.
by Kirtikumar
Wed Oct 12, 2011 1:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: BuildOp: Compilation failing with Array
Replies: 2
Views: 1882

BuildOp: Compilation failing with Array

Hi, I am trying to create a build op and below is the code used. Def: char LKP_KEY[20000][100]; int LenLKP_KEY[20000]; char OutputCol[20000][100]; int UniqueLength[100]; int RecCounter, UniqueCounter, i, j, k; Pre: i = 0; j = 0; k = 0; LenLKP_KEY[0] = 0; printf("Hello World!\n"); However w...
by Kirtikumar
Wed Aug 03, 2011 8:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Wait on Sparse Lookup
Replies: 3
Views: 1754

After doing a debugging for almost a day, we have found the issue was not with oracle. In the job we run a for loop to pick the files that match a pattern and External source stage. The cut command is being used and that command gives required fields. When the folder where we run the for loop has a ...
by Kirtikumar
Wed Jul 27, 2011 11:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Wait on Sparse Lookup
Replies: 3
Views: 1754

Forgot to add one more thing - it runs fine on Dev with same data. On prod though it is having these kind of issues. The Session monitor shows the wait is in "SQL*Net message from client". And the sparse lookup returns rows and still stays in wait.
by Kirtikumar
Wed Jul 27, 2011 11:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Wait on Sparse Lookup
Replies: 3
Views: 1754

Oracle Wait on Sparse Lookup

Hi, We are facing an issue when using sparse loookup. We get thousands of files per day and the name includes date. Now if the file already processed comes again, we should not load it. We store the loaded file names in table FileNameControl. So when we start file processeding, we extract the date f...
by Kirtikumar
Wed Mar 30, 2011 12:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Buildop stage
Replies: 6
Views: 6158

I was getting a similar error today and found only one of the posts which talks about this message. After debugging it found out that if you do not define input or output schemas for build op or define an array with size 0 you get this error. Though it is very old post, thought of sharing the soluti...
by Kirtikumar
Tue Jan 18, 2011 3:18 am
Forum: General
Topic: Routine for getting the count in the link
Replies: 5
Views: 2845

Use a simple basic routine and here is a sample: DEFFUN svtGetLinkCount(JobName, StageName ,LinkName) CALLING "DSU.COUNT.FILES" ************************************************************************************************************************* * Header files to be included **********...
by Kirtikumar
Wed Jan 12, 2011 12:05 am
Forum: General
Topic: Job is not in the right state (compiled and not running
Replies: 2
Views: 4080

As you as you get this reply in logs, have you tried running the sequence2 manually or may be using DSRunJob? Is it working that ways?
by Kirtikumar
Tue Jan 11, 2011 11:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to improve performance of this job?
Replies: 7
Views: 3607

Are you sure it is not the DRS extraction? Have you tried running a simple job to extract from DRS and load in DRS and check how long are they taking?

when job is running, what are the CPU and memory stats of the server?
by Kirtikumar
Tue Jan 11, 2011 5:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can we change the parameter value at run time?
Replies: 11
Views: 7256

Whatever I mentioned was to be done in the first job. Then call the second job multiple times for no. of rows created by first job. During each call, pass the filename from the file created in the first job. In the job using join with the original file and created file from first job, you can get th...