Search found 53125 matches

by ray.wurlod
Thu Jul 24, 2008 2:03 am
Forum: IBM QualityStage
Topic: Multiple words substitution in QS standardization stage
Replies: 2
Views: 1605

Precisely what I suggested. Set them up as input text overrides. They will reside in a separate (text) file reserved for input text overrides.

I don't have QS at the moment, otherwise I could tell you the name of the file. Read the section of the manual about Rule Sets; it will tell you.
by ray.wurlod
Thu Jul 24, 2008 2:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date comparision
Replies: 2
Views: 865

Where is this code? An If..Then..Else expression mandates both a Then and an Else path. Yours lacks an Else path. As to comparing dates, I think that should be possible provided that each uses the same format. (InputLink.A = "0001-01-01") should be a valid expression (and one that ...
by ray.wurlod
Thu Jul 24, 2008 1:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: erroneous link collector output
Replies: 6
Views: 1777

Are you using Round Robin or Sort/Merge as your collection algorithm? If it's round robin, I believe it can start generating output as soon as it sees a row on any link BUT it should not close just because end-of-data has been processed on one input. That, I think, is a bug. With sort/merge a simila...
by ray.wurlod
Thu Jul 24, 2008 1:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SCD stage output
Replies: 8
Views: 2863

Is your instructor certified in exam 415?
by ray.wurlod
Thu Jul 24, 2008 1:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Bad record delimiter Fixed width length "\n" got &
Replies: 9
Views: 8955

The problem is in the first line of your file (record 0).

Please post both the record schema and the first line of the file.

Surround each (separately) with Code tags please. It makes it easier to count characters if you do so.
by ray.wurlod
Thu Jul 24, 2008 12:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: run time entry
Replies: 4
Views: 1000

Please mark the thread as Resolved (button at top of thread).
by ray.wurlod
Thu Jul 24, 2008 12:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need to put leading zero at right if it is null
Replies: 2
Views: 1348

Try

Code: Select all

Fmt(InLink.TheNumber, "R%2")
or

Code: Select all

Fmt(InLink.TheNumber, "R'0'2")
or

Code: Select all

Right("00" : InLink.TheNumber, 2)
just for three.
by ray.wurlod
Wed Jul 23, 2008 11:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: erroneous link collector output
Replies: 6
Views: 1777

Can you do it without a Link Collector? Write all rows into a hashed file, with artificial keys generated in the Transformer stages (for example A1, A2, A3, ... and B1, B2, B3, ...) to see if you get the correct results by this means?
by ray.wurlod
Wed Jul 23, 2008 11:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage PX Warning:
Replies: 7
Views: 2165

meet_deb85, please use a professional standard of English at DSXchange. It is difficult enough for those participants whose first language is not English when the English is correct. Introducing SMS-style abbreviations, which assume too much, such as "u", "ur" and "plz", only add to their difficult...
by ray.wurlod
Wed Jul 23, 2008 11:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SCD stage output
Replies: 8
Views: 2863

I can't really check this until next time I teach DX444, which is unlikely to be before November. Your trainer should, however, be able to solve this.
by ray.wurlod
Wed Jul 23, 2008 11:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: erroneous link collector output
Replies: 6
Views: 1777

Not really enough information to go on. What happens inside the Transformer stages? Do you re-compile or reset between runs? How long do you wait between runs?
by ray.wurlod
Wed Jul 23, 2008 11:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transforming DATE field from text file to Oracle
Replies: 1
Views: 1328

Date (except within Oracle) is not the same thing as Timestamp. The ODBC driver enforces this difference. Turn your date into a timestamp using appropriate Transform (TIMESTAMP).
by ray.wurlod
Wed Jul 23, 2008 7:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Pivot stage upstream of Column Import stage
Replies: 3
Views: 1045

Please explain that requirement more carefully. Parameters can only be passed before the job runs, so whatever it is that you are proposing would require some kind of pre-processing of the source data.
by ray.wurlod
Wed Jul 23, 2008 7:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Conditional Replication
Replies: 4
Views: 2214

Use a server job (since there's only one row) - the overheads are much smaller. Put the returned count into that job's user status area (search the forum for techniques), and retrieve it as the $UserStatus activity variable from the Job activity that ran that job.
by ray.wurlod
Wed Jul 23, 2008 7:39 pm
Forum: IBM QualityStage
Topic: Warning message on Matching - IIS-DSEE-TFOR-00073
Replies: 2
Views: 3138

Yes. You would have found it by searching the DataStage forums. A parallel stage has a sequential stage downstream of it, but the setting of the parallel stage is "preserve partitioning". Changing this property to Clear stops the upstream stage from trying to require the downstream (sequential) stag...