Search found 15603 matches

by ArndW
Mon Dec 31, 2007 12:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Avoid Multiple Instances of Jobs in Director Log.
Replies: 8
Views: 2927

I can think of 2 things:
a) filtering Director entries
b) Automatic purging - this will remove the instance name when the log is purged.
by ArndW
Mon Dec 31, 2007 10:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Concatenate
Replies: 11
Views: 2297

dspxlearn wrote:...

Code: Select all

Convert(lk_AccInfo.AI_HomePhone,'-','')
...
should read

Code: Select all

Convert('-','',lk_AccInfo.AI_HomePhone)
by ArndW
Mon Dec 31, 2007 8:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to remove the leading Zeros
Replies: 6
Views: 1590

Yes, the syntax is different; like the Server stage syntax. It is available in the PDFs or online help.
by ArndW
Mon Dec 31, 2007 8:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to remove the leading Zeros
Replies: 6
Views: 1590

TRIM In.String '0' 'F' in a modify stage would do the trick
by ArndW
Mon Dec 31, 2007 6:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sorting Algorithm for Datastage Sort
Replies: 6
Views: 1354

I explained in the original reply that because of proprietary sorting method you cannot guarantee identical output. So either specify all columns needed in your sort criteria or explicitly sort using CoSort in DataStage. Also, because of partitioning in DataStage you are going to get separate stream...
by ArndW
Mon Dec 31, 2007 6:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sorting Algorithm for Datastage Sort
Replies: 6
Views: 1354

Either use CoSort in DataStage or ensure that there are no unsorted duplicate columns in both CoSort and DataStage. This is the only way you will get guaranteed identical behaviour.
by ArndW
Mon Dec 31, 2007 5:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding the performance of datastage and SQL Loader
Replies: 12
Views: 5934

DataStage. Particularly if you have a partitioned table.
by ArndW
Mon Dec 31, 2007 5:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sorting Algorithm for Datastage Sort
Replies: 6
Views: 1354

Hello Joe, there are so many complex mathematical approaches that are data dependant that the output order of sorted records will always be undefined unless they are part of the sort criteria. Since the sort algorithms and methods in CoSort as well as DataStage are not published you can never guaran...
by ArndW
Mon Dec 31, 2007 4:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Concatenate
Replies: 11
Views: 2297

Could you cut-and-paste your concatenation derivation to this thread? Most likely that is not working as you expect. Also, what datatype and length have you declared your stage variables as?
by ArndW
Sat Dec 29, 2007 10:50 am
Forum: General
Topic: run time column propogation
Replies: 2
Views: 1074

Could you be more specific about what didn't work? RCP, when enabled, lets columns get propagated without having them explicitly declared in all stages.
by ArndW
Fri Dec 28, 2007 11:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Access repository information
Replies: 2
Views: 1347

The DataStage subroutine calls to get this information have not changed at Version 8 so you can continue to use DSGetJobInfo() and the other DSGet...() routines to retrieve this information.
by ArndW
Fri Dec 28, 2007 10:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting error while saving table definition
Replies: 5
Views: 1588

It is a bug, since I'm fairly certain I didn't try to do anything illegal.
by ArndW
Fri Dec 28, 2007 10:36 am
Forum: General
Topic: Multiple Instances of a server Job.
Replies: 9
Views: 3364

The instance name isn't too important, it just has to be a unique string. Where do you want to generate this? If from inside DataStage I'd use @DATE:@TIME, assuming you won't be starting several instances within the same second.
by ArndW
Fri Dec 28, 2007 9:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential files, filter command and \000 characters
Replies: 14
Views: 7643

It seems to be the way that DataStage calls up the ksh at version 8. If, from my shell, I execute the following two commands I see that the second one doesn't work as expected. I have no idea why the two commands run differently. echo "\000" | tr '\000' '?' | wc ksh -c echo "\000"...
by ArndW
Fri Dec 28, 2007 9:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sun Solaris & Datastage 7.5 Problems
Replies: 10
Views: 6166

Actually, replacing your joins with sparse lookups would show memory usage a lot better if you could try that - with a sparse lookup the reference data is not loaded to memory at all.