Search found 15603 matches

by ArndW
Wed Jul 09, 2008 11:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dataset and Flat file
Replies: 1
Views: 510

Hello cnu and welcome to DSXchange. This question has been asked numerous times, you can start by using the search function.
Basically, a DataSet is already partitioned for quick and efficient parallel access while a sequential file generally can only be processed, well, sequentially.
by ArndW
Wed Jul 09, 2008 11:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading the data file
Replies: 7
Views: 1554

What stage are you using to read this data and what Varchar() length did you specify? If you remove the XML stage and no longer get an error in the program, then it probably isn't an issue with input lengths.
by ArndW
Wed Jul 09, 2008 11:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NLS problem
Replies: 2
Views: 902

The warning message and the segmentation are not necessarily related. If you change the job default to UT8 for test purposes, what happens?
by ArndW
Wed Jul 09, 2008 10:57 am
Forum: General
Topic: Error: Unable to read Initial packet - 81002 in the log
Replies: 3
Views: 2132

What is the job that you are viewing reading from, i.e. what is the source stage?
by ArndW
Wed Jul 09, 2008 10:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: IS8 Director Run-time error '429'
Replies: 6
Views: 7197

Thanks for posting all that - this type of information is what makes DSXchange (with the Search function) so useful to us all!
by ArndW
Wed Jul 09, 2008 10:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TrimLeadingTrailing() function usage in Transformer
Replies: 8
Views: 6039

This looks like an IBM c++ compiler problem that you can search on the internet. Turn off optimization in the stage-specific compiler options for the transform stage, that should do the trick as well.
by ArndW
Wed Jul 09, 2008 10:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TrimLeadingTrailing() function usage in Transformer
Replies: 8
Views: 6039

I think TrimLeadingTrailing is a macro and not its own function, try using TRIM(InColumn,'B') to see if the complexity is reduced.
by ArndW
Wed Jul 09, 2008 5:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Excel Files extraction using ODBC
Replies: 6
Views: 2859

No, it isn't mandatory to use MSQUERY, but if you have the same problem with a tool outside of DataStage, then it is unlikely you have a DataStage problem - so it is a good way to cross-check connectivity.
by ArndW
Wed Jul 09, 2008 2:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warnings when writing to Oracle table
Replies: 14
Views: 16241

Is runtime column propagation enabled in the output link of the stage before the Oracle write?
by ArndW
Wed Jul 09, 2008 2:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Excel Files extraction using ODBC
Replies: 6
Views: 2859

Can you try the ODBC connection with MSQUERY or another tool of your choice? Does that work correctly?
by ArndW
Wed Jul 09, 2008 1:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Data Load to XML output
Replies: 4
Views: 1162

Most likely in the XML stage, but without additional information it is impossible to say.
by ArndW
Wed Jul 09, 2008 1:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warnings when writing to Oracle table
Replies: 14
Views: 16241

Not really - I've never seen this error before. What sort of SQL do you have?
by ArndW
Tue Jul 08, 2008 10:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error at Job run, dspipe_wait(365614)
Replies: 1
Views: 526

This is a named-pipe error. But you need to supply a bit more information on the job and error in order to diagnose the real cause. Do you always get this error? What happens if you run in a single node?
by ArndW
Tue Jul 08, 2008 10:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Hashed File Limitiations
Replies: 4
Views: 1463

A 64Bit file can hold 2**64/2 bytes of data. The details of dynamic hashed files are not documented in DataStage but you can look at the IBM UniVerse documentation for details.
by ArndW
Tue Jul 08, 2008 10:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Link Names
Replies: 21
Views: 5771

DSAttachJob() is a function, not a subroutine. It won't compile or run with a CALL.
Use "JobHandle = DSAttachJob(Arg1,Arg2)"