Search found 53125 matches

by ray.wurlod
Fri May 15, 2009 4:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to remove the padding charachers from a string
Replies: 11
Views: 3713

In particular, what data types are involved?
by ray.wurlod
Fri May 15, 2009 4:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Basic Transformer within Parallel Job
Replies: 7
Views: 5140

Is node1 a different machine from the conductor node?
by ray.wurlod
Fri May 15, 2009 4:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Null handling for 200 / 300 columns at one go.
Replies: 14
Views: 4159

Research the Derivation Substitution utility in the Transformer stage.
by ray.wurlod
Fri May 15, 2009 4:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple Instances Dynamically.
Replies: 6
Views: 2353

The flow chart is up to you. You could also write pseudo code. Create it in a job sequence and examine the generated job control code. That should get you started.
by ray.wurlod
Fri May 15, 2009 4:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Range lookup issue
Replies: 18
Views: 5126

Have you marked id and the date as Key columns on the reference link?
by ray.wurlod
Fri May 15, 2009 4:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is any way we can retrieve the "Part Num" of Datas
Replies: 7
Views: 2080

I don't know any way to retrieve the part number from DataStage software. Maybe there's a hidden file in DSEngine directory. Ask IBM through your support provider.
by ray.wurlod
Fri May 15, 2009 1:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not able to see the links and stages
Replies: 7
Views: 2794

Not if you won't answer my questions.
by ray.wurlod
Fri May 15, 2009 1:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stoping & Restarting Repository Database while server ba
Replies: 8
Views: 3458

You really need to do it, and you really do need to shut down (and, of course, start) the servers in the correct order. Shutting down DB2 while WAS and DataStage server are still running will cause you no end of grief.
by ray.wurlod
Fri May 15, 2009 12:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: mailing in datastage
Replies: 14
Views: 3605

Yes, that can be done. Find someone with enough DOS skills to show you how to do it in the Windows environment. Something like

Code: Select all

IF NOT EXIST dirpath MKDIR dirpath
Or, if you have a UNIX emulator you can use the test command to determine existence.

Code: Select all

test -d dirpath !! mkdir dirpath
by ray.wurlod
Fri May 15, 2009 12:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: mailing in datastage
Replies: 14
Views: 3605

You can do any pipelining that the operating system permits. For example
command1 ; command2 ; command3 ; command4
command1 && command2 && command3 && command4
by ray.wurlod
Fri May 15, 2009 12:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Truncate Table when a condition is true
Replies: 9
Views: 2639

Abort requires a reset, not necessarily a recompile. Automatic reset can be specified in sequences' Job activities, via "reset if required, then run" property value.
by ray.wurlod
Fri May 15, 2009 12:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Text file read aborts - Short read encountered
Replies: 8
Views: 4168

Need to see all properties of your Sequential File stage, and also the specifications in your Lookup stage.
by ray.wurlod
Fri May 15, 2009 12:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Removing obsolete jobs
Replies: 7
Views: 4967

The file on the server is in the &COMO& directory.
by ray.wurlod
Fri May 15, 2009 12:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: deleting /tmp/* caused "score file deleted" warnin
Replies: 11
Views: 2850

That's definitely not a DataStage question. Consult your system administrator for assistance with automatic start and shutdown scripts. If you want to amend the DataStage startup/shutdown script, you will find this in the location reported by the uv -admin -info command. Make very sure you take a ba...
by ray.wurlod
Fri May 15, 2009 12:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to get the rejected records from oracle enterprise st
Replies: 8
Views: 4154

Does your reject link have sqlcode column? Does your reject link or your job have a limit on the number of rows/warnings handled?