Search found 53125 matches

by ray.wurlod
Wed Jan 04, 2006 3:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup file Set
Replies: 3
Views: 865

A Lookup File Set includes an internal index on the key columns.

A Sequential File stage would need to be completely imported into a virtual Data Set, but this lacks an index, so that lookups would still require a partial or full scan.
by ray.wurlod
Wed Jan 04, 2006 3:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: warnings in change capture stage
Replies: 3
Views: 912

Does that make it doubly urgent?

In that case, I'll double my normal penalty delay in responding to urgent post. We don't do "urgent" here, as has been explained often.
by ray.wurlod
Wed Jan 04, 2006 3:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: modify stage
Replies: 2
Views: 798

What data types are source and target columns? Without this, we can only guess at the right answer.
by ray.wurlod
Wed Jan 04, 2006 3:34 pm
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: RTI
Replies: 1
Views: 1808

Start at the Ascential web site and DeveloperNet (where there is also an RTI forum).
by ray.wurlod
Tue Jan 03, 2006 11:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: decimals
Replies: 3
Views: 1112

Oconv(14560, "MR2") or Fmt(14560, "MR2") will do the job for you.
by ray.wurlod
Tue Jan 03, 2006 11:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: diffrence between joiner and lookup
Replies: 7
Views: 3130

Don't ignore the Merge stage, which does allow you to capture failed lookups from each reference input separately. It also requires identically sorted and partitioned inputs and, if more than one reference input, de-duplicated reference inputs.
by ray.wurlod
Tue Jan 03, 2006 7:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Retrieving the Job Version Number
Replies: 10
Views: 2507

I'm not doing DataStage at all this week - conducting a Red Brick training class, no access to DataStage. RTI_Enabled is definitely do-able, I've forgotten how, but will check when I can. Job version number can be obtained from DS_JOBOBJECTS ROOT record (field #8) for the job. The key to this record...
by ray.wurlod
Tue Jan 03, 2006 4:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date conversion in Transformer
Replies: 3
Views: 936

Code: Select all

Oconv(Iconv(MyDate, "DMDY"), "D/MDY[4,2,2]") : " 00:00:00"
(I've assumed you meant four digit year, not three!)
by ray.wurlod
Tue Jan 03, 2006 4:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to run a job with no limit as warning
Replies: 10
Views: 2097

Change defaults from Tools > Options menu in Director.
by ray.wurlod
Tue Jan 03, 2006 3:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: User defined SQL-required link property
Replies: 5
Views: 1708

Yes.

You must have DSN, user ID, password, table name and column names (at a minimum) complete before View Data is enabled.

If you are using environment variable job parameters with $PROJDEF or $ENV) it just doesn't happen at all.
by ray.wurlod
Tue Jan 03, 2006 3:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transpose a row Question in Parallel jobs
Replies: 18
Views: 7576

I don't recall anyone claiming that Pivot stage was faster than awk.
by ray.wurlod
Tue Jan 03, 2006 3:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem in reading a seqfile in px
Replies: 5
Views: 1691

Please describe the file (rather than what you're attempting to set in DataStage). Is it delimited or fixed width? Are character strings quoted or unquoted? Have you imported its table definition? If so, did you Load from that into both the Format and Columns tabs in your job design?
by ray.wurlod
Tue Jan 03, 2006 3:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 access
Replies: 5
Views: 1303

The development time for the new jobs should be in the order of minutes only. Update the documentation within the job, delete the existing column definitions and load the new ones. Source and target table names are, presumably, job parameters.
by ray.wurlod
Tue Jan 03, 2006 3:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dataset Fields Checking
Replies: 1
Views: 812

It's not easy. DataStage does not have an inherent metadata checking function. You might have some success by making not only the Data Set control file name a job parameter, but also the Schema File property (which assumes that you have created external schema files) but it's not something I've ever...