Search found 53125 matches

by ray.wurlod
Thu Sep 27, 2012 2:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Interpreting The Job Score
Replies: 2
Views: 1167

You should have delete descriptor file whenever the mode in the Data Set stage is Overwrite, but not when it's Append. Can you please check this property?
by ray.wurlod
Thu Sep 27, 2012 2:20 pm
Forum: General
Topic: File merge
Replies: 4
Views: 1436

Why not just script the commands that are currently being performed manually?
by ray.wurlod
Thu Sep 27, 2012 2:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dynamic Insert SQL Statement
Replies: 17
Views: 8201

There's only one row to be processed by the job. Why start up a parallel job to process one row? Also, the interface to the user status area is much simpler in a server job.
by ray.wurlod
Thu Sep 27, 2012 4:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel routine appears to have a memory leak
Replies: 18
Views: 9561

PhilHibbs wrote: Which raises the question, how can it return a pointer that has been freed?
Perhaps THAT is the question you should be putting to IBM?
by ray.wurlod
Thu Sep 27, 2012 4:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Number of readers per node --
Replies: 22
Views: 7658

There is no limit. The GUI may limit the number you can enter. However there are stupid values (for example 4000000 readers for 2000000 rows). Think about the architecture. Sequential File stage uses the STREAMS I/O module under the cover so, even with only one reader per node, you are going to be r...
by ray.wurlod
Thu Sep 27, 2012 4:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: function to trim commas between a string
Replies: 3
Views: 1148

Use the pxEreplace() function you can find here on DSXchange.
by ray.wurlod
Thu Sep 27, 2012 3:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Gets hanged or running slow
Replies: 6
Views: 2600

So what's your question?
by ray.wurlod
Thu Sep 27, 2012 3:56 am
Forum: Information Analyzer (formerly ProfileStage)
Topic: Sharing DQ Rules across servers
Replies: 2
Views: 1986

Theoretically yes. I'll have to give some thought to the next, "how", question!
by ray.wurlod
Wed Sep 26, 2012 4:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Load encrypted column
Replies: 7
Views: 3569

What if you remove the quote characters? (The statement as it exists will encrypt the literal string.)
by ray.wurlod
Wed Sep 26, 2012 4:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dynamic Insert SQL Statement
Replies: 17
Views: 8201

Do their Rules require a hammer to fasten a screw? The idea here is to use the right tool for the task. In this case it's a sequence (and, preferably a server job to read the file). You can update a values file of a parameter set directly, but you have to overwrite the entire file. You could do this...
by ray.wurlod
Wed Sep 26, 2012 4:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: convert varchar to timestamp
Replies: 2
Views: 1160

You don't have a timestamp in your data. You have merely a year.
by ray.wurlod
Wed Sep 26, 2012 3:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dynamic Insert SQL Statement
Replies: 17
Views: 8201

You ARE able to use sequences.
by ray.wurlod
Wed Sep 26, 2012 3:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error when trying to read from Sybase Enterprise
Replies: 6
Views: 6089

The rest of the message seems to be column headings. Is there an environment variable that can be set to suppress these from returned information from Sybase?
by ray.wurlod
Wed Sep 26, 2012 3:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: merge_test..Merge_1: Link property retrieval error
Replies: 4
Views: 2608

Think for a moment what the Merge stage is doing. This will provide some guidance about which columns need to be identically named and which ones do not.
by ray.wurlod
Tue Sep 25, 2012 4:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dynamic Insert SQL Statement
Replies: 17
Views: 8201

I have done this in the past, but not all in one job. I had a server job build the custom SQL and place it into its user status area. A downstream parallel job receives the entire SQL statement as a job parameter from activity variable Job1.$UserStatus, and uses this in the appropriate stage in Job2...