Search found 15603 matches

by ArndW
Wed Mar 24, 2010 5:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Why Modify stage is used when Transformer can do
Replies: 7
Views: 2340

The modify stage is the original Orchestrate stage that allowed modification of column values, the transform stage came afterwards. They have a number of similarities; while the modify stage is an OSH call, transform stages are compiled c programs that are executed at runtime.
by ArndW
Wed Mar 24, 2010 2:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NLS Settings in DataStage
Replies: 7
Views: 14679

Your data is stored in UTF16 in the database so it would be best to set your NLS_LANG to the same and also specify that in your Oracle stage.
by ArndW
Tue Mar 23, 2010 8:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning: the value of the PWD environment variable
Replies: 8
Views: 4663

What UNIX platform are you on?
by ArndW
Tue Mar 23, 2010 8:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: connect to uniVerse shell
Replies: 1
Views: 749

It is the "Universe Shell" that you are looking for, now renamed to the "DataStage shell". From the UNIX command line, ensure that you have sourced the 'dsenv' script, 'cd $DSHOME', then 'bin/dssh' to enter the environment. Beware that this is the central account and you can easi...
by ArndW
Tue Mar 23, 2010 8:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning: the value of the PWD environment variable
Replies: 8
Views: 4663

The error is not, as I had somehow thought from the error message, in the configuration file. What flavor of UNIX are you working on, while the posted suggestion should work I've never had to explicitly set this value as normally the working directory value is set correctly by the OS.
by ArndW
Tue Mar 23, 2010 4:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NLS Settings in DataStage
Replies: 7
Views: 14679

What are your runtime environment settings for NLS_LANG and ORA_NLS?
by ArndW
Tue Mar 23, 2010 4:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning: the value of the PWD environment variable
Replies: 8
Views: 4663

I suspect the answer lies in your APT_CONFIG file, please post it.
by ArndW
Tue Mar 23, 2010 4:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to read hash file from parallel job
Replies: 4
Views: 4756

You could use database tables or re-engineer your processes to use datasets.
by ArndW
Tue Mar 23, 2010 4:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to improve the performance of mainframe jobs
Replies: 3
Views: 1397

How is the data coming from the mainframe - that step might be your bottleneck, in which case any improvements to your DataStage jobs wouldn't increase throughput.
by ArndW
Mon Mar 22, 2010 11:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Email address format validation
Replies: 12
Views: 9658

You've done a great job putting together a dynamic array but have chosen to use a loop instead of the very powerful LOCATE statement. Here's my suggestion: ... CountryCodes.Arr = CONVERT(",", @FM, ISO_CountryCodes) ; * Convert List to array LOCATE mailExt IN CountryCodes.Arr SETTING Ans EL...
by ArndW
Mon Mar 22, 2010 11:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: "Cent" character issue
Replies: 12
Views: 7655

Ok, now you've eliminated the Mainframe and the AIX machine from the equation, as you are seeing the 0xA2 character in your sequential file. If reading this with ISO-8859-1 then DataStage is almost certainly getting the correct character. Try writing a dummy program to read this file and output to a...
by ArndW
Mon Mar 22, 2010 11:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NLS Settings in DataStage
Replies: 7
Views: 14679

What stage are you using for Oracle and what are your NLS environment settings for Oracle?
by ArndW
Mon Mar 22, 2010 11:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: 'Update' data within a dataset
Replies: 3
Views: 1415

As Priyad has already stated, you cannot update contents of a dataset. This would be a good case for using a table or multiple dataset files along the lines of what anbu has written.
by ArndW
Mon Mar 22, 2010 9:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: "Cent" character issue
Replies: 12
Views: 7655

I'm not sure of the syntax of your locsite command, if it means that the FTP should convert from IBM-037 to ISO 885-1 then your cent character should be 0x4a in the source (see http://www-1.ibm.com/servers/eserver/iseries/software/globalization/pdf/cp00037z.pdf) and 0xA2 after FTP. First off, locate...
by ArndW
Mon Mar 22, 2010 8:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DB2 Vs Hash partition technique
Replies: 4
Views: 1887

With a partitioned DB2 database you may use DB2 partitioning, but it is not required. Using it will give you better performance in parallel reads and writes, though.