Search found 53125 matches

by ray.wurlod
Thu Mar 15, 2007 9:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Change Data Capture
Replies: 12
Views: 3687

Are you perhaps using customized code values and have chosen the same code value for two different diff cases?
by ray.wurlod
Thu Mar 15, 2007 9:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup Stage with Duplicate Dimension data
Replies: 3
Views: 1090

Search for "surrogate key" and "type 2 slowly changing dimension". This is the conventionally used technology in this case. Only one of the dimension records is current at any one time for each particular business key value.
by ray.wurlod
Thu Mar 15, 2007 9:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: irreconcilable constraints
Replies: 3
Views: 1345

... and you'll find your duplicate post - please delete it before anyone replies to it.
by ray.wurlod
Thu Mar 15, 2007 9:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup Stage Error
Replies: 5
Views: 1180

This error (abort) has occurred because your "Lookup Failed" rule is set to "Fail". Reference rows are not consumed by a Lookup stage so there is no way, using this stage, to determine which keys were touched. Use a Merge stage instead if you need this functionality.
by ray.wurlod
Thu Mar 15, 2007 9:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Key Partition Incremental
Replies: 4
Views: 1022

How about setting the APT_RDBMS_COMMIT_ROWS environment variable?
by ray.wurlod
Thu Mar 15, 2007 9:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error Data Conversation
Replies: 2
Views: 1602

That's because Oracle reports all integers as NUMBER(38). The job may still work OK, and changing the data type in the job to Integer may help too. Better would be to change the data type in the imported table definition before loading the table definition into the job. In that case, create a messag...
by ray.wurlod
Thu Mar 15, 2007 9:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: to run a job before the exit of sequencer
Replies: 10
Views: 2721

A sequencer makes an any or all decision, and you probably need one. But the thing you use it IN is called a "job sequence", not a sequencer.
by ray.wurlod
Thu Mar 15, 2007 9:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: generating random number in a specified range
Replies: 19
Views: 3972

Write a sequence of numbers as keys to a hashed file (UniVerse table) on the conductor node, then read it back. The hashing algorithm will give you some measure of scrambling, and your generated sequence will be unique. You could use an External Target stage or a server job shared container containi...
by ray.wurlod
Thu Mar 15, 2007 8:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Run Condition
Replies: 5
Views: 1405

You could always take a training class
by ray.wurlod
Thu Mar 15, 2007 8:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS Function to retrieve Project Level Environment Variable?
Replies: 13
Views: 3780

There is a "UniVerse" command called ENVIRONMENT (or just ENV) which returns a list of all current (set) environment variables. You could invoke this through DSExecute.
by ray.wurlod
Thu Mar 15, 2007 8:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: XML SChema help
Replies: 3
Views: 1194

Policy Note

We don't do "urgent" or "ASAP" here. All posters are unpaid volunteers. If you want urgent help sign up with your support provider for premium service, and learn the true cost of "urgent".
by ray.wurlod
Thu Mar 15, 2007 8:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Import Plug-in Metadata - DB2
Replies: 9
Views: 2011

I once waited more than 24 hours for the list of tables to be returned from DB2/400 (on AS/400 machine). On this platform, every file in the operating system is reported as a table. Soon learned to always specify a filter! And that was just configuring the ODBC driver.
by ray.wurlod
Thu Mar 15, 2007 8:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: File name
Replies: 2
Views: 1272

IF you have been systematic about managing your metadata, and only ever loaded the table definition into these jobs from the Repository, then your answer is as simple as choosing that table definition in Manager and requesting a Usage Analysis (the beaker-shaped tool on the Toolbar).
by ray.wurlod
Thu Mar 15, 2007 8:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: 19 Hashed file look up....
Replies: 8
Views: 1767

Supply and demand again. Manage your expectations. Try splitting the 19 lookups across, say, four transformer stages rather than have one as the bottleneck. Next time you run the job, enable statistics on the Job Run Options dialog for that single transformer stage - learn where it is spending most ...
by ray.wurlod
Thu Mar 15, 2007 8:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle Bulkload
Replies: 10
Views: 2967

Surely, if the error is "unable to extend tablespace", then the issue is with the DBA to change the auto-growth characteristics (or even the actual size) of the tablespace in question?