Search found 3329 matches

by Sainath.Srinivasan
Wed Sep 14, 2005 3:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SQL Error
Replies: 7
Views: 1121

Cast individual cols before concat.
by Sainath.Srinivasan
Tue Sep 13, 2005 8:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Writing a Time based Routine
Replies: 4
Views: 1232

What if your sequencer was started on 23:59 hrs and was found running during 00:00 - 05:00 period ?
by Sainath.Srinivasan
Tue Sep 13, 2005 8:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DECODE function in oracle
Replies: 2
Views: 645

No. Decode is just another function in Oracle.
by Sainath.Srinivasan
Tue Sep 13, 2005 7:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to avoid duplicates in merge stage
Replies: 7
Views: 3702

One of the following two statements must be valid.

1.) The data is incorrect - as you have duplicates in one and you expect unique values in the output
2.) Your assumption of uniqueness is incorrect.

Find which is one is true and design accordingly.
by Sainath.Srinivasan
Tue Sep 13, 2005 7:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to find a huge job log
Replies: 14
Views: 4639

I wonder how the post from chullet appeared before manojmathai even though it was posted much after that !!
by Sainath.Srinivasan
Tue Sep 13, 2005 7:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: seperating duplicate rows
Replies: 12
Views: 3091

You will need to parse the file 2 times.
by Sainath.Srinivasan
Tue Sep 13, 2005 7:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading Parameters From Database directly
Replies: 14
Views: 11795

You can use job control and native db connection to do it. The only diff will be that the db is shared and can be accessed by various methods.
by Sainath.Srinivasan
Tue Sep 13, 2005 7:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can't start DS server!
Replies: 16
Views: 6784

How did you check that the DS is up? Maybe someone was logged in when it was brought down.
by Sainath.Srinivasan
Tue Sep 13, 2005 7:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unexpected termination by Unix signal 9(SIGKILL)
Replies: 9
Views: 13514

Sometimes the admin people get worried about the DS jobs and kill the process.
by Sainath.Srinivasan
Tue Sep 13, 2005 7:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: MEssage Text,Message ID from Log
Replies: 2
Views: 754

Is the question to get the message given the id?

Search the forum. You will find lots of methods.
by Sainath.Srinivasan
Tue Sep 13, 2005 7:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Duplicate Entry +Lookup
Replies: 2
Views: 1228

That is because your lookup source has dupl keys.

You need to decide whether it is valid or not and set accordingly.
by Sainath.Srinivasan
Mon Sep 12, 2005 4:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Log Messages
Replies: 6
Views: 1437

DataStage does not delete any log unless otherwise set to do so.

Search for DSGetJobInfo for more information.
by Sainath.Srinivasan
Mon Sep 12, 2005 9:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Decimal to String Conversion
Replies: 5
Views: 2280

DataStage does not interpret the values when you view it.

Check whether you are viewing the same file.
by Sainath.Srinivasan
Mon Sep 12, 2005 9:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: seperating duplicate rows
Replies: 12
Views: 3091

Firstly, why do you want distinct?

If the source is from a db, you can use SQL join to get the dups.

Otherwise, write the count key in a ds and reference it in the job.

There are lots of other options depending on your requirement.
by Sainath.Srinivasan
Mon Sep 12, 2005 6:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stage variable properties!!
Replies: 4
Views: 1876

Or must it be

Code: Select all

If DSLink3.custno <> tTemp Then tkey + 1 Else tkey 


But note that you are dealing in parallel mode.