Search found 196 matches

by sumitgulati
Fri Mar 04, 2005 3:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Number of columns in Transformer affects @INROWNUM
Replies: 3
Views: 1660

Thanks a lot Mike. It worked.

Regards,
-Sumit
by sumitgulati
Fri Mar 04, 2005 2:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Uniqueness of data in a table
Replies: 14
Views: 5421

Hi Yamini, The <> does not work with Null values. You need to do null handling to solve this. Follow this approach: Declare seven staging variables say ColA, ColB, ColC, UniqueCnt, ColAvar, ColBVar and ColCVar in the same order. Initialize all the stagevariables to 0. Map ColAvar and ColA to If IsNu...
by sumitgulati
Fri Mar 04, 2005 1:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Number of columns in Transformer affects @INROWNUM
Replies: 3
Views: 1660

Number of columns in Transformer affects @INROWNUM

Hi, I have a job in which I use system variable @INROWNUM. It is a simple job with two transformers. In the first transformer I make a lookup to a hash file which is right now empty and hence does not return any records. The @INROWNUM is not behaving as expected. It starts with 2 instead of 1 and wh...
by sumitgulati
Wed Mar 02, 2005 6:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: What happens to the Job log when we rename the job?
Replies: 7
Views: 2423

Thanks a lot Ray and dsxuserrio.

-Sumit
by sumitgulati
Wed Mar 02, 2005 5:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: What happens to the Job log when we rename the job?
Replies: 7
Views: 2423

Thanks Ray. That explains why it takes time but I am still curious to know what happens to the log file if we rename a job.
Does it also get deleted or does it continue to exist on the system and we just lose the pointer to it by renaming the job?

Regards,
-Sumit
by sumitgulati
Wed Mar 02, 2005 5:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to read this file?
Replies: 6
Views: 2358

Is the number of record types fixed. In other words there are maximum four record types 10,20,21,40.

-Sumit
by sumitgulati
Wed Mar 02, 2005 4:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: What happens to the Job log when we rename the job?
Replies: 7
Views: 2423

What happens to the Job log when we rename the job?

Hi, I have a job that when ran gave a lot of warning messages. I am trying to see the log in director but its not opening up because its huge. I tried clearing the log from the director but even the clear log window seems to taking forever to open. Now I am planning to change the job name to get rid...
by sumitgulati
Wed Mar 02, 2005 3:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Uniqueness of data in a table
Replies: 14
Views: 5421

You are right Arvind but we have no informaion on
1) the frequency of load
2) if the source file contains new set of data everytime or not

Regards,
-Sumit
by sumitgulati
Wed Mar 02, 2005 1:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Uniqueness of data in a table
Replies: 14
Views: 5421

Addition to the previous reply.

Using the same logic you can define a flag. Use this flag to push the values to Table B only when a new combination comes.

Push all the records to Table A

Use the value of UniqueCnt in both TableA and Table B
by sumitgulati
Wed Mar 02, 2005 1:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Uniqueness of data in a table
Replies: 14
Views: 5421

Re: Uniqueness of data in a table

Well since the data is sorted that solves the problem. Declare four staging variables say UniqueCnt, ColAvar, ColBVar and ColCVar in the same order. Initialize all the stagevariables to 0. Map ColAvar, ColBVar and ColCVar to ColA, ColB and ColC from the source. In the derivation of UniqueCnt have th...
by sumitgulati
Wed Mar 02, 2005 12:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Uniqueness of data in a table
Replies: 14
Views: 5421

Is the data coming from the source file sorted by the three columns that define uniqueness of a row? Could you also please give approx number of records you expect to process using this job.

Regards,
-Sumit
by sumitgulati
Wed Mar 02, 2005 11:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Commit in Sequential file
Replies: 7
Views: 2107

Thanks to all for your replies. I was expecting it to be an OS side issue.

Thanks again
-Sumit
by sumitgulati
Tue Mar 01, 2005 8:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Commit in Sequential file
Replies: 7
Views: 2107

Commit in Sequential file

Hi, I have a job that loads data into a sequential file. The jobs takes close to 30 minutes to finish. If I try to view the data in the sequential file from DataStage designer when the job is running I was able to see the records in the file until a few days ago. But I have noticed that from past fe...
by sumitgulati
Tue Mar 01, 2005 6:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Join tables from 2 different databases
Replies: 14
Views: 5878

If you load Oracle data into hash file and do a join in transformer stage then in case of multiple matches found the hash file will return the last match only. In case you want all the rows to be returned use the ODBC stage. In the transformer properties > Input tab select the "Reference link w...
by sumitgulati
Thu Feb 10, 2005 6:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Parameter value
Replies: 4
Views: 1229

I wanted to aviod writing any code but looks like I will have to do it. Thanks for you ideas.

Regards,
-Sumit