Search found 53125 matches

by ray.wurlod
Fri May 09, 2008 5:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Suggest the job design
Replies: 2
Views: 1024

Not really. You have to ensure that the parent record (in the referenced table) is in place before writing any child record (in the referencing table).

The only exception is when you use the Slowly Changing Dimension stage (version 8.0 and later), which manages this for you.
by ray.wurlod
Fri May 09, 2008 5:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DS Administrator
Replies: 14
Views: 3986

Information Server Administrator console: Yes
WebSphere Application Server Administration console: Yes
DataStage Administrator client: No
by ray.wurlod
Fri May 09, 2008 5:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Complex File Stage: variable block files
Replies: 8
Views: 3752

You could pre-process the file to add terminators. In DataStage BASIC you would use ReadBlk to read one byte (record type) then ReadBlk to read the requisite number of bytes for the remainder of that data. Use WriteSeq to write the result with an automatically-added line terminator. You could so the...
by ray.wurlod
Fri May 09, 2008 4:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple Instances of a job
Replies: 4
Views: 1504

ONE instance of a job can run with no invocation ID (that is, an invocation ID of ""). However, a second instance with the same invocation ID, whatever it is, will fail to start (job not in a runnable state: already running).
by ray.wurlod
Fri May 09, 2008 4:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Abnormal termination at aggregator
Replies: 1
Views: 760

Moderator: please move to Server forum

Please be specific about what you are doing in the Aggregator stage, whether its input is sorted, and some idea of the data volume you are processing.
by ray.wurlod
Fri May 09, 2008 4:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: A quick verification for Sort stage
Replies: 5
Views: 4275

Don't push, especially on weekends.
by ray.wurlod
Fri May 09, 2008 4:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Type conversion
Replies: 1
Views: 1309

:idea:

Transformer stage functions use "To" (for example DecimalToString) and one-based numbering.

Modify stage functions use "_from_" (for example string_from_decimal) and zero-based numbering.
by ray.wurlod
Fri May 09, 2008 4:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformation Logic
Replies: 1
Views: 649

If there is a small, finite number of col1 (depth) values you could accumulate/reset in a Transformer stage variable for each. Output only the stage variable for the current value of depth. Perhaps use four outputs into a Funnel stage.
by ray.wurlod
Fri May 09, 2008 4:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: precompilation
Replies: 6
Views: 1548

However this was one of a series of clearly server job questions, so presumably the interviewer was concentrating on server job knowledge.
by ray.wurlod
Fri May 09, 2008 4:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Newline character getting loaded into DB Column
Replies: 15
Views: 5890

Please confirm HOW you "tried that".
by ray.wurlod
Fri May 09, 2008 4:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to read an XML file?
Replies: 1
Views: 750

Welcome aboard.

Please verify your DataStage version number - there is no version 6.5 as far as I am aware.

Moderator: please move to Server forum
by ray.wurlod
Fri May 09, 2008 4:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Windows Vista hiding the expression editor
Replies: 11
Views: 3193

Magic idea: install DataStage on a supported operating system.
by ray.wurlod
Fri May 09, 2008 4:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CONCAT timestamp
Replies: 9
Views: 2915

I would use the DIGITS Transform then concatenation.

Code: Select all

DIGITS(InLink.TheTimestamp) : InLink.seq_no
by ray.wurlod
Fri May 09, 2008 4:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transformer Rejects not throwing warnings
Replies: 5
Views: 1540

Are the links still [Reject] links?
by ray.wurlod
Fri May 09, 2008 4:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: 7.5x2 7.5 7.1 Backward Imports
Replies: 1
Views: 850

7.5x2 to 7.5 should be OK without tweaking anything.

7.5x2 to 7.1 may work, if you tolerate the errors during import (7.5 functionality that is not supported in 7.1), but there are no guarantees.

7.x to 6.x or earlier will not work.