Search found 53125 matches

by ray.wurlod
Mon Dec 20, 2010 4:48 am
Forum: General
Topic: How to implement Wait
Replies: 6
Views: 2187

Use a Sequencer set to "All". This will not fire its output until all the activities upstream of it have completed. If necessary you can have an Execute Command or Routine activity downstream of the Sequencer to execute a sleep or nap command.
by ray.wurlod
Mon Dec 20, 2010 4:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Difference between Full Outer Join and Funnel Stage
Replies: 1
Views: 1929

Funnel is best characterised as performing a UNION ALL, rather than any kind of join. Assuming two inputs, with M rows on one and N rows on the other, you will get (M+N) rows out of a Funnel stage and as many as (M*N) rows out of a full outer join.
by ray.wurlod
Mon Dec 20, 2010 4:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to use DB2 function in stage
Replies: 6
Views: 2582

You can use DB2 functions in DataStage in the same way you use it in any other client - within a SELECT statement. This implies that the stage type is a DB2 or ODBC stage of some kind.
by ray.wurlod
Mon Dec 20, 2010 4:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sparse Lookup
Replies: 14
Views: 9598

There is no "sparse feature" in server jobs.
by ray.wurlod
Mon Dec 20, 2010 4:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dataset comparision from Oracle and Teradata
Replies: 6
Views: 2699

Difference stage, Compare stage, Change Capture stage?
by ray.wurlod
Mon Dec 20, 2010 4:37 am
Forum: General
Topic: editing multiple files at once
Replies: 2
Views: 1111

Replace them in an export DSX then re-import.
by ray.wurlod
Mon Dec 20, 2010 4:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sparse Lookup
Replies: 14
Views: 9598

Get the SQL out of your Oracle stage (it will be in the log) and inspect it to figure out what may have caused the -1036 error code. Without the SQL we can't provide any more cogent advice than that.
by ray.wurlod
Mon Dec 20, 2010 4:30 am
Forum: General
Topic: load the data by excluding first and last record in source
Replies: 5
Views: 2250

Are the header and footer identifiable by anything in their data structure, such as a "record type" field? If so, constrain on that.
by ray.wurlod
Mon Dec 20, 2010 4:28 am
Forum: General
Topic: loading data in different targets
Replies: 5
Views: 2124

Mod(sv,3) can never be 3.
by ray.wurlod
Mon Dec 20, 2010 4:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting date two days prior to the current date
Replies: 1
Views: 1318

Use DateFromDaysSince() function.
by ray.wurlod
Sun Dec 19, 2010 8:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Carriage Return ^M ascii character 13
Replies: 4
Views: 3259

My bad. :oops:

Should have been &h0D
by ray.wurlod
Sun Dec 19, 2010 8:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Capturing datastage job logs in to a database for real-time
Replies: 1
Views: 1358

So? Just design it in. This is a great opportunity to create a generic Shared Container for error trapping and reporting. Enrich the error information (which passes through the container using RCP) with information about the job run. If you want to capture the DataStage job log information could I s...
by ray.wurlod
Sun Dec 19, 2010 5:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Carriage Return ^M ascii character 13
Replies: 4
Views: 3259

DOS-style Record Delimiter String gives \x0D\x0A (CR/LF).

A simple CR at the end is a very unusual requirement. Are you totally certain that's what you want?

If so try using hex notation (\x0D).
by ray.wurlod
Sun Dec 19, 2010 1:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Disabled Parallel Jobs in the fresh(new) installation
Replies: 5
Views: 3101

"DataStage" is the parallel canvas. I'm surprised, though, just to see "licensed". Normally this interface reports processor value units (PVUs) or "quantity". Could this environment have been upgraded from a version 7 system? Do you have an "enterprise license"...
by ray.wurlod
Sun Dec 19, 2010 1:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to use Pivot stage
Replies: 1
Views: 1344

Scroll to the right in the Columns grid until you find the "Incomplete Column" rule. Working up from the final column, change the possibly missing columns' rule to "Replace", which will replace each with NULL. Once you've done the pivot you can filter out the rows that have null,...