Search found 6797 matches

by DSguru2B
Wed Jul 19, 2006 8:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Insert error
Replies: 8
Views: 2010

With your id, try to manually create a table and insert a single record via command line. See if that works?
by DSguru2B
Wed Jul 19, 2006 8:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 equivalent of substr()
Replies: 9
Views: 3895

I know in server you do
Incolumn[3,5]. Not sure if that works in a PX transformer. Someone else here needs to confirm that.
by DSguru2B
Tue Jul 18, 2006 1:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Trigger based upon ReturnValue of Routine
Replies: 4
Views: 1035

What about a character return value. Try returning True or False. See if that helps. This is really odd. The jobstatus and the return code are two seperate codes and mutually exclusive and will/should not affect each other.
by DSguru2B
Tue Jul 18, 2006 12:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Did you know this about TRIM()?
Replies: 12
Views: 2716

Now now, dont go run all over him :P
by DSguru2B
Tue Jul 18, 2006 12:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Waiting for file to finish and append
Replies: 5
Views: 1210

Write to a different file the second time and then use a link collector to collect the two files.
by DSguru2B
Tue Jul 18, 2006 12:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Did you know this about TRIM()?
Replies: 12
Views: 2716

Substring wont. Agreed. But if the target is a database with char field it will fill in spaces to honour the length.
by DSguru2B
Tue Jul 18, 2006 12:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Insert error
Replies: 8
Views: 2010

Do a google on SQL7008. At some places it says you need to jounal a couple of enteries and at some places it says commit more often. Investigate into it.
by DSguru2B
Tue Jul 18, 2006 12:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: error when using stored procedure
Replies: 2
Views: 1210

Need more info,
HOw are you calling the stored procedure, STP stage of odbc stage?
What type of parameter are you specifying while importing the stored procedure?
by DSguru2B
Tue Jul 18, 2006 12:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: AutoClass and DataStage
Replies: 2
Views: 764

You can specify the timeout in the wait for file activity stage. This way your job doesnt have to wait for an indefinate period of time.
by DSguru2B
Tue Jul 18, 2006 12:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unzip in DS
Replies: 10
Views: 2710

Ofcourse you can. Look at the filter option in the sequential file stage, or you can even get it done as a before job subroutine by ExecSH and typing your unzip command there.
by DSguru2B
Tue Jul 18, 2006 12:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Join on Null
Replies: 8
Views: 2054

look into the Collasce function. You can use that in the where predicates. I might be off by a word or two in the name of the function. I have used that before in my sql queries. What it basicaly does is checks if the key is null, it will replace it with a default value that you specify. The format ...
by DSguru2B
Tue Jul 18, 2006 10:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CRC Info
Replies: 14
Views: 4751

I agree totally with Kim. We have our top posters, very well experienced in this field, to fill in the blanks or even correct us. Thats one reason I always come back and recheck my answers. And i have been corrected so many times, only to my and the dsxchange user's benefit. And we should welcome an...
by DSguru2B
Tue Jul 18, 2006 9:22 am
Forum: Site/Forum
Topic: Do you want posts marked when the issue is resolved?
Replies: 9
Views: 5281

I think thats an excellent idea. This way a person can go to those topics which were solved before hitting the other ones, that get returned during a search.
:P
by DSguru2B
Tue Jul 18, 2006 1:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Removing duplicates from 20 million records
Replies: 24
Views: 7528

Actually, if you are using unix commands then you might as well use the unix uniq command to remove duplicates.
Another question, why are you using aggregator to remove duplicates, why not just pass the input through a hashed file?