Search found 53125 matches

by ray.wurlod
Mon May 08, 2006 3:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Avoid warnings when Wait for file Timeouts.
Replies: 33
Views: 15505

Look at the "how to use" comments in the first four lines of the code. The pathname is the first argument, and there is a total of five arguments.
by ray.wurlod
Mon May 08, 2006 3:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sparse lookup
Replies: 2
Views: 976

No. You must use the DB2 Enterprise stage.
by ray.wurlod
Mon May 08, 2006 12:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: active-to-active link problem
Replies: 29
Views: 6079

Even with Photoshop applying maximum sharpening, I can not read the labels on that job design. It is, nonetheless, clear that you have a circular design. -----> TransformerStage1 -----> ^ | | | | V HFStage1 HFStage2 ^ | | | | V -----> TransformerStage2 -----> which will never work. Please post a lar...
by ray.wurlod
Mon May 08, 2006 12:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help in setting Null value..
Replies: 9
Views: 3881

@NULL is the correct mechanism. How are you loading the DB2 table? The problem might be occurring there. You might like to edit the generated SQL to provide NULL explicitly as part of the SQL syntax.
by ray.wurlod
Mon May 08, 2006 12:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem while viewing DB2 stage
Replies: 1
Views: 763

A patch is required if your client machine is running Windows XP SP2.
by ray.wurlod
Mon May 08, 2006 12:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Couting number records coming from DB2 table
Replies: 5
Views: 1209

select count(*) from table should be quite cheap to execute, because it should be able to be resolved with a single read from system table. One solution to the question would be a job sequence containing two jobs and an intermediate Routine activity to determine the link row count from the first jo...
by ray.wurlod
Sun May 07, 2006 2:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Function to find get Next Date
Replies: 3
Views: 1482

And strip out the delimiters in the generated date.

Code: Select all

Oconv(Iconv(yourDate, "DYMD") + 1, "DYMD[4,2,2]" : @VM : "MCN")
by ray.wurlod
Sun May 07, 2006 2:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multi lingual excel file
Replies: 2
Views: 1071

Check with your vendor as to whether a more recent driver is available (with DataStage), otherwise check with DataDirect themselves.
by ray.wurlod
Sun May 07, 2006 2:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Internal Tables
Replies: 11
Views: 10842

The tables that comprise the repository are deliberately incompletely described. "They" reserve the right to change them, and do so at most major releases. Further, some tables contain multiple record structures. On this forum, and by inspecting Kim Duke's ETL toolkit, you can find out pretty much a...
by ray.wurlod
Sun May 07, 2006 2:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: active-to-active link problem
Replies: 29
Views: 6079

I still can't tell whether "hash1" is being populated by or being used to serve a reference link by either of the transformer stages to which it is linked. Arrowheads (use "V" or "^") are needed. Or post the image, as Craig asked.
by ray.wurlod
Sun May 07, 2006 2:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: problem with look up
Replies: 3
Views: 1688

File Sets are not stored in the scratchdisk area, they are stored in the disk area. You need to clean up the control file (blah.fs) as well as the data files on each partition.
by ray.wurlod
Sun May 07, 2006 2:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: active-to-active link problem
Replies: 29
Views: 6079

Actually, it's not complete, as we can't tell which way data flow with respect to the Hashed File stage hash1. The circularity to which Arnd refers is in the Hashed File stage hash2 - it can not open its outputs until its input is closed. Is there any reason this can't be done as two jobs - one to p...
by ray.wurlod
Sun May 07, 2006 2:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Avoid warnings when Wait for file Timeouts.
Replies: 33
Views: 15505

Not only that, it logs an informational message (not a warning) when the timeout triggers. 8)
by ray.wurlod
Sat May 06, 2006 3:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Importing multiple schema files
Replies: 3
Views: 855

I'm afraid you're in for pain. Have you tried multi-select (Shift-Click or Ctrl-Click) in the drop-down list of schema file names? That's about all I could suggest.
by ray.wurlod
Sat May 06, 2006 2:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Quit the sequencer if file not found
Replies: 3
Views: 1357

Use an ExecuteCommand activity to execute dir command, and check its exit status. It should be non-zero if no file exists to match your wildcard. Use a Routine to do the same thing. Open the folder as if it were a table and count the file names matching your wildcard. (You will need to Change() the ...