Search found 53125 matches

by ray.wurlod
Sun Sep 03, 2006 2:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem when Executing an script
Replies: 5
Views: 2291

Put some echo commands in the top of the script so you can assess what values were passed via the command line arguments.
by ray.wurlod
Sun Sep 03, 2006 4:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Scheduler problem
Replies: 3
Views: 1631

After you have scheduled the job, open a CMD shell and type the command AT. Inspect the queue. Is there one job reported there, or two? If only one, it's a problem with how Director is reading the queue; if two it's a problem with how Director is interacting with the queue. Once we know which it is,...
by ray.wurlod
Sun Sep 03, 2006 1:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: OSH.EXE Application Error
Replies: 15
Views: 5375

Try it without the spaces around the "=" sign. It does actually make a difference. And, since you're on Windows, use the set command.

Code: Select all

set ORACLE_HOME="C:\oracle\product\10.1.0\Db_1" 
by ray.wurlod
Sun Sep 03, 2006 1:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning while importing metadata from DB2
Replies: 10
Views: 3501

That's the information I was trying to remember when I kept going on about system tables. Clearly it's important. But when one is in an internet cafe paying for connection time one does not really want to spend it searching.
by ray.wurlod
Sun Sep 03, 2006 1:05 am
Forum: Site/Forum
Topic: Warehouse Architecture and Modelling Section
Replies: 5
Views: 3212

QA? Wozzat den? :lol:
by ray.wurlod
Sat Sep 02, 2006 10:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: xml stage: ds_loadlibrary: error in dlopen
Replies: 5
Views: 1992

That's useful to know, thanks for posting it.

Obvious in hindsight but, then, what isn't?
by ray.wurlod
Sat Sep 02, 2006 8:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sample UNIX script
Replies: 10
Views: 2824

Visio wouldn't help with that, either.
by ray.wurlod
Sat Sep 02, 2006 5:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sample UNIX script
Replies: 10
Views: 2824

You don't need Visio. The job design itself shows the flow graphically. Choose the documentation icon from the Designer toolbar (second from the right) to produce job documentation. Similarly, the job sequence design shows the flow of control graphically. Build the documentation as above and edit th...
by ray.wurlod
Sat Sep 02, 2006 5:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Designer exits abruptly
Replies: 4
Views: 1047

Restarting DataStage will clear all locks, but don't treat this as a magic cure-all solution. Keep it in reserve for (a) when you've tried everything else, and (b) when nothing is happening in DataStage.
by ray.wurlod
Sat Sep 02, 2006 5:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: OSH.EXE Application Error
Replies: 1
Views: 1171

Thank you for the testimonial.

All you need to do now is to post your question on the forum for questions on parallel jobs and you will be one step closer to getting an answer.
by ray.wurlod
Fri Sep 01, 2006 9:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to automated the datastage jobs import/export process
Replies: 4
Views: 2726

With those commands you can only export entire projects. Search the forum for exporting individual jobs. You can then script that with an items list.
by ray.wurlod
Fri Sep 01, 2006 9:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: NLS Mapping Error
Replies: 4
Views: 2253

The "?" in "OCLI/DR GERALD D?fAV" indicates the actual character that could not be mapped. You may like to check your source to verify that that character is properly encoded. You may require a hex editor for this task.
by ray.wurlod
Fri Sep 01, 2006 9:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error: Failed to keylookup for record
Replies: 7
Views: 5251

"Drop" causes any input row for which the lookup fails not to appear on the output of the Lookup stage. By discarding records in this fashion you are eliminating any chance of performing row count reconciliation. Prefer a rejects link from the Lookup stage, even if it appends to /dev/null. At least ...
by ray.wurlod
Fri Sep 01, 2006 9:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Header & Trailer Record Warning
Replies: 11
Views: 4343

Use a rejects link from the Sequential File stage to capture the header and trailer row (as raw strings) into a separate data stream. You can process them separately or just ignore them.
by ray.wurlod
Fri Sep 01, 2006 9:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unexpected exit status 1
Replies: 6
Views: 4279

The column derivations become the SELECT clause of the query that is generated. That's why you can have DISTINCT, SUM(), expressions and so on in the derivations.