Search found 53125 matches

by ray.wurlod
Wed Jul 07, 2010 8:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Installation - No server found in web console
Replies: 2
Views: 1382

First check your install log to see whether the installation was successful or not. You might also look in the History section of Version.xml (for Information Server) to see what's been installed and whether successful. One possibility is that you have not yet installed the engine tier.
by ray.wurlod
Wed Jul 07, 2010 5:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC connector
Replies: 2
Views: 1060

The table name becomes the FROM clause and the column names become the SELECT clause. The generated SQL is probably reported in the job log.
by ray.wurlod
Wed Jul 07, 2010 4:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal termination of stage detected
Replies: 25
Views: 10255

Backslash on UNIX escapes the next character. So \bis_data\msg\mfr\offshore\log\ becomes "bis_datamsgmfroffshorelog" - you end up with a file of this name in your current working directory. NT-based Windows doesn't care most of the time - you can use forward slashes or backslashes in pathn...
by ray.wurlod
Wed Jul 07, 2010 4:54 pm
Forum: General
Topic: UserVariable to Run the Routine
Replies: 7
Views: 2405

Re: UserVariable to Run the Routine

anandapani wrote: UV stage
by ray.wurlod
Wed Jul 07, 2010 12:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need help to resolve a logic.
Replies: 1
Views: 1212

I cannot discern any generalizable logic that would produce the desired output. Can you please provide a written rule (or set of rules)? In particular I don't understand how the final two rows in your example, especially the penultimate one, are obtained.
by ray.wurlod
Wed Jul 07, 2010 12:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need help in a range string formation logic
Replies: 5
Views: 1484

chulett wrote:So... this is how you take a break, eh? :wink:
You orta see how he navigates his boat!!! :wink:
by ray.wurlod
Wed Jul 07, 2010 12:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: RESET
Replies: 5
Views: 1512

Looks like the job is being run in Reset mode, not in Normal mode. Status code 21 means "has been reset". Check in the Director's status view.
by ray.wurlod
Wed Jul 07, 2010 12:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Parameters through shared connections
Replies: 1
Views: 1019

I'm afraid this is just "how it works" - the designed-in defaults are in the compiled job too. This is where values files come in handy - you can choose the appropriate values file (for example the one for dev or the one for test) at run time.
by ray.wurlod
Wed Jul 07, 2010 12:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while viewing Pipe delimeted file
Replies: 2
Views: 1271

The sequential file is not on your conductor node, the problem is in establishing communication between the conductor node and the node on which the sequential file resides.

The actual delimiter in the file is irrelevant, provided it matches the metadata used in the record schema.
by ray.wurlod
Wed Jul 07, 2010 12:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Maximum Columns that can be read by a sequential file
Replies: 3
Views: 1854

The only limit you might strike is if the operating system has a limit on the number of bytes in a line in a file. There is no limit within DataStage per se. Check with your UNIX administrator.
by ray.wurlod
Wed Jul 07, 2010 12:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: partition name in bulk loader
Replies: 4
Views: 1783

What happens when you invoke on-line help from within the stage?
by ray.wurlod
Wed Jul 07, 2010 12:31 am
Forum: General
Topic: UserVariable to Run the Routine
Replies: 7
Views: 2405

Please publish the user variable's derivation expression. This should assign the return value from the function to the user variable. There is no scope for using routines in a UV stage, so I'm not clear what you're doing here. In server jobs transform function routines may only be called from a Tran...
by ray.wurlod
Tue Jul 06, 2010 4:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Droping index before bulk loading
Replies: 6
Views: 2039

Just login to the database and drop the index!
by ray.wurlod
Tue Jul 06, 2010 4:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: partition name in bulk loader
Replies: 4
Views: 1783

What happens when you invoke on-line help from within the stage?
by ray.wurlod
Tue Jul 06, 2010 12:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Droping index before bulk loading
Replies: 6
Views: 2039

How about a DROP INDEX statement (perhaps embedded in a stored procedure) executed from the "Before SQL" or "Open Command"?