Search found 53125 matches

by ray.wurlod
Wed Oct 19, 2011 11:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Record Count
Replies: 5
Views: 1587

Are you using WebSphere Transformation Extender or DataStage? This forum is for WebSphere Transformation Extender. But your language suggests that the question is about DataStage.

Once we know which product you're using it will be easier to provide a correct answer without having to guess.
by ray.wurlod
Wed Oct 19, 2011 7:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stage to Use
Replies: 5
Views: 1888

Transformer stage with four outputs brought together in a downstream Funnel stage.
by ray.wurlod
Wed Oct 19, 2011 7:14 pm
Forum: General
Topic: search for a value passed to parameter in whole repository
Replies: 3
Views: 1232

Probably search through an export file of the project for the parameter name.
by ray.wurlod
Wed Oct 19, 2011 7:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: data set
Replies: 6
Views: 1413

Do you speak binary? Storage in Data Sets uses DataStage internal format where, among other things, all numeric data are stored in binary format. A Data Set is not intended to be a database (otherwise they would have called it that). A Data Set stores a set of data: a whole set of data.
by ray.wurlod
Wed Oct 19, 2011 6:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: data set
Replies: 6
Views: 1413

Re: data set

...write into a .ds file. Please be aware that data are never written into the .ds file itself. This file is a descriptor that stores the locations of the segment files in which the data are actually stored. There is one segment file per resource disk directory per node, provided that there are suf...
by ray.wurlod
Wed Oct 19, 2011 4:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need help in storing global parameters/variables
Replies: 5
Views: 1242

Just a thought. How about a unique Sort on the first file then a Join with the second file? No need for global anything.
by ray.wurlod
Wed Oct 19, 2011 4:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Importing a table definition from a flat file using ODBC
Replies: 6
Views: 2967

Neither the ODBC importer nor the Sequential File importer can read a file of this nature and turn it into a table definition. This will need to be a manual process (unless you create a job or routine to do it, to update the DS_METADATA table).
by ray.wurlod
Wed Oct 19, 2011 4:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Performance using SQL query or Join/Lookup stage
Replies: 3
Views: 1587

If the join keys are supported by indexes, then the equi-join in the database will certainly and substantially out-perform the join in DataStage. A further benefit is that DataStage will only need to process those rows that are the result of the join, rather than all rows from all tables.
by ray.wurlod
Wed Oct 19, 2011 4:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: delimiters in file
Replies: 8
Views: 1955

When you exceed my post count I will be happy to consider your opinions about my professionalism.

You did not even acknowledge that I did provide an answer.
by ray.wurlod
Wed Oct 19, 2011 4:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: join two keys with lookup stage
Replies: 7
Views: 2089

You can give a condition about whether or not to attempt the lookup, but you can not make the lookup itself conditional which is what your original post suggests. Perform the lookup with a Lookup stage unconditionally, and handle the condition elsewhere - maybe only load the records into the referen...
by ray.wurlod
Wed Oct 19, 2011 4:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: compare
Replies: 3
Views: 2020

You don't need to do anything. They will be compared as strings, since at least one of the operands is a string. If you want to force a right-justified (numeric) comparison, use the Compare() function, whose third argument specifies the justification. In this case the space will be treated as zero.
by ray.wurlod
Wed Oct 19, 2011 3:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job failing with 'ds_ipcput() - timeout waiting for mutex'
Replies: 2
Views: 1928

What kind of UNIX? There are environment variables where you can tune the SPINSLEEP and SPINTRIES for mutex locks available for some UNIX platforms. But, as noted, ultimately the wait times being experienced, due to load, are longer than the smart semaphores (mutex locks) are tuned for.
by ray.wurlod
Wed Oct 19, 2011 3:52 pm
Forum: General
Topic: can't find job
Replies: 3
Views: 1376

Deleting the ROOT record - even if you had the correct SQL syntax - is not going to achieve anything useful. What exactly do you want to accomplish?

Why not re-import the job from one of your recent backup exports?

Why don't you have support?
by ray.wurlod
Wed Oct 19, 2011 3:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: join conditions
Replies: 3
Views: 1572

No. The Join stage has only equi-joins on the identified join key columns.
by ray.wurlod
Wed Oct 19, 2011 3:45 pm
Forum: General
Topic: job parameters, where used
Replies: 2
Views: 1028

1) Yes, possibly easiest is via inspection of either an export file or the records for that job in the DS_JOBOBJECTS table.

2) You are correct. You may wish to submit an enhancement request around this one.