Search found 4605 matches

by kduke
Wed Dec 21, 2005 2:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage BASIC functions with variable number of arguments
Replies: 8
Views: 2226

Arnd

I think the trick is in VB when you call a routine. I think it is easier there.
by kduke
Wed Dec 21, 2005 2:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Change Hashfile name
Replies: 13
Views: 3818

It is a Pick command not Prime. Sometimes it pays to be a Picky.
by kduke
Wed Dec 21, 2005 8:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Not able to retrieve timestamps column from database
Replies: 5
Views: 1701

Craig is correct. The newer date types added milliseconds and some of the routines break. DataStage itself may not handle a new data type on a new release of a database. You may have to use varchar in that case.
by kduke
Wed Dec 21, 2005 8:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Not able to retrieve timestamps column from database
Replies: 5
Views: 1701

I think varchar on both ends works great. It stores it internally as varchar anyway. DataStage itself is faster in a server job to use varchar on most everything. You only need the real type on a plugin like a bulk load. DataStage will handle the conversion at that point. PX jobs are very different ...
by kduke
Wed Dec 21, 2005 8:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to remove double quotes ( " )
Replies: 9
Views: 11283

Use convert() it is faster than ereplace(). It does not do as much but is very good for this type of thing.
by kduke
Tue Dec 20, 2005 5:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: RANGE LOOKUP/UV STAGE -READING DATA IN WRONG FORMAT
Replies: 2
Views: 789

I would say your metadata is messed up. You may need to delete the hash file and recreate it.
by kduke
Tue Dec 20, 2005 5:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Change Hashfile name
Replies: 13
Views: 3818

CNAME is the TCL command to change a file name.
by kduke
Tue Dec 20, 2005 5:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Conditional Lookup
Replies: 6
Views: 1622

Craig is correct. You need to build the hash file with some arbitrary key. You need to use a UV stage unless you can find and build multivalues. Save your metadata from the hash file load. Leave the hash file in the account (no path and no account name) unless you want to figure out SETFILE. Next us...
by kduke
Mon Dec 19, 2005 6:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UniVerse reference as input to another universe reference
Replies: 3
Views: 982

Yes you can. You can easily do it with 2 transforms. If you want to do it in one transform then the order is important. Next you have to manually type in the field or fields in the lookup columns of the second lookup because it will not let you drag a column from the first lookup. It will also leave...
by kduke
Mon Dec 19, 2005 6:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Advantage of Datastage over Informatica
Replies: 13
Views: 10225

The answer is so judgemental


The best answer might be that SAP, PeopleSoft and some of the biggest software companies use DataStage and include it with their products. If it was not at least as good then why would they switch from the other to DataStage.
by kduke
Sun Dec 18, 2005 10:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Zip and Unzipping the file
Replies: 1
Views: 618

You need to shell out and unzip it before processing it. Write a shell script or a batch file in DOS.
by kduke
Wed Dec 14, 2005 6:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSMakeJobReport Code
Replies: 9
Views: 3578

I think I have. Search for it.
by kduke
Tue Dec 13, 2005 8:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to diffrentiate the parameters in execute command stage
Replies: 8
Views: 2621

You can change it to ExecSH or ExecDOS and it works fine in all versions.

Command Stage serks.
by kduke
Tue Dec 13, 2005 8:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSMakeJobReport Code
Replies: 9
Views: 3578

by kduke
Tue Dec 13, 2005 7:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can i call two subroutine functions after job finishes.
Replies: 4
Views: 1133

Write one routine which calls the other 2.