Search found 53125 matches

by ray.wurlod
Fri Oct 30, 2009 10:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CFF Stage - Configuring Record delimiter
Replies: 21
Views: 10822

A server routine with ReadBlk statements may prove to be even more efficacious.
by ray.wurlod
Fri Oct 30, 2009 8:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CFF Stage - Configuring Record delimiter
Replies: 21
Views: 10822

If there is no line terminator then there must exist some indicator of the length of the variable part. I don't believe the CFF stage can deal with these as yet. However, you can read with a Sequential File stage as a single string per line and parse subsequently with a Transformer stage.
by ray.wurlod
Fri Oct 30, 2009 8:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lkp_1,0: Operator terminated abnormally: received signal SIG
Replies: 11
Views: 5780

You (everyone) should review the score more often, especially when new functionality creeps in. It can be quite revealing!
by ray.wurlod
Fri Oct 30, 2009 6:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CFF Stage - Configuring Record delimiter
Replies: 21
Views: 10822

Look at the file with a hex viewer (UltraEdit is good) and determine what the line terminator actually is. It can't be NONE, because of the short records.
by ray.wurlod
Fri Oct 30, 2009 6:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: max value of APT_DEFAULT_TRANSPORT_BLOCK_SIZE is no good
Replies: 3
Views: 3111

Just make certain that you don't max out on memory first. All those buffers have to BE somewhere.
by ray.wurlod
Fri Oct 30, 2009 6:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Import Error
Replies: 3
Views: 1427

Did the job actually get exported? Do a "partial" import and view the contents of the file.
by ray.wurlod
Fri Oct 30, 2009 6:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dropped Records in transformer Stage
Replies: 5
Views: 1805

Are you using stage variables? These are currently implicitly not nullable. News from IOD 2009 is that they're going to be a bit less strict with some of the things in the Transformer stage in a future release, one of those things will be better tolerance of nulls in functions, expressions and stage...
by ray.wurlod
Fri Oct 30, 2009 6:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How can one flatten OCCURS DEPENDING ON structure
Replies: 5
Views: 2438

DataStage schemas support variable vectors, and you can promote subrecords using a Promote Subrecord stage. Just an idea.
by ray.wurlod
Fri Oct 30, 2009 6:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job aborts after 50 warning messages
Replies: 7
Views: 2628

Check the default limit in Tools>Options in Director client.
by ray.wurlod
Fri Oct 30, 2009 6:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Conversion error
Replies: 4
Views: 1767

The message may simply be caused by your string being defined longer that absolutely necessary to store a date of the format specified in your job. But, without the details we've already requested, it's impossible to say.
by ray.wurlod
Fri Oct 30, 2009 6:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lkp_1,0: Operator terminated abnormally: received signal SIG
Replies: 11
Views: 5780

Can you compile/run jobs with Transformer stages?

Range lookups are rewritten as transform operators (that is, as Transformer stages) and therefore have the same compiler and linker requirements as Transformer stages.
by ray.wurlod
Fri Oct 30, 2009 6:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need help with DB2 Enterprize stage
Replies: 1
Views: 835

PX checks more thoroughly. Try removing the "Key" property from the unused column in the metadata in your job, though I will make no guarantees that this will solve your problem.
by ray.wurlod
Fri Oct 30, 2009 6:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle call failed; sqlcode = -1,418
Replies: 4
Views: 2384

Go back into the stage and select the Index Type property. Text will appear indicating the available options and what each does for you.
by ray.wurlod
Fri Oct 30, 2009 6:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Couple of questions about Dataset
Replies: 2
Views: 1051

The orchadmin command is the main one. If all you want is a count of the records in the Data Set there is also a dsrecords command available.
by ray.wurlod
Fri Oct 30, 2009 6:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: data set
Replies: 2
Views: 1039

As noted your question is not really clear. You may get some idea from my answer from your other question - otherwise check the manuals. The main difference between a Data Set and a File Set is that the former stores data in the internal format that DataStage uses while the latter exports the data i...