Search found 53125 matches

by ray.wurlod
Tue Jul 24, 2007 4:04 am
Forum: General
Topic: Validation of Integer value
Replies: 3
Views: 1713

Best is the parallel function IsValid().
by ray.wurlod
Mon Jul 23, 2007 11:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: INSERTing maximum value
Replies: 17
Views: 4634

Yes, clearly. It should be generating only ONE "same value".
by ray.wurlod
Mon Jul 23, 2007 11:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Merge Stage
Replies: 3
Views: 1018

If there are 0 rows on the master input of a Merge stage you would expect there to be 0 rows on its output link.

Similarly if there are 0 rows on the left input of a Join stage you would expect there to be 0 rows on its output link for inner and left outer joins.
by ray.wurlod
Mon Jul 23, 2007 11:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: stripping tmestamp from files in a directory
Replies: 8
Views: 1669

This is much easier to do with a shell script than with DataStage. DataStage is a row mover rather than a file mover. Of course, DataStage can control when the script is executed. So can a third party scheduler. It's not possible to provide a solution, because we have no idea of how the filenames-wi...
by ray.wurlod
Mon Jul 23, 2007 11:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: define informations as output variable
Replies: 4
Views: 1360

Can you please explain the Oracle query again? I know English may not be your first language. However, to read a field in SQL you must already have its name, so you could pass that as a literal string. Clearly I am misunderstanding your requirement. I am guessing that you can select what you want fr...
by ray.wurlod
Mon Jul 23, 2007 11:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Checkpoint mechanism?
Replies: 4
Views: 1740

For less than 30c per day you CAN be a premium member, contribute to the bandwidth costs that have to be paid to keep DSXchange alive, and benefit professionally by being to read all the premium posters' posts (plus some other soon-to-be-announced goodies).
by ray.wurlod
Mon Jul 23, 2007 11:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to check size for hash file
Replies: 8
Views: 2810

There are quite a few. Probably the easiest is UVFIXFILE, which can't handle 64-bit hashed file.
uvfixfile -f pathname -t 1
by ray.wurlod
Mon Jul 23, 2007 11:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Looking for some advice on Preload file to memory
Replies: 24
Views: 7071

1100MB simply won't fit in a cache space of 999MB, particularly if there are two 400MB hashed files already cached there. Disable cache for the 1100MB hashed file, so that it doesn't need to warn when it can't allocate any more and starts working to/from disk.
by ray.wurlod
Mon Jul 23, 2007 11:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Setting Job Priority?
Replies: 10
Views: 3896

R all TFM !!!

Even the UniVerse and Orchestrate ones.
by ray.wurlod
Mon Jul 23, 2007 11:07 pm
Forum: General
Topic: How to Configure Service Registry?
Replies: 3
Views: 1335

You're the integration consultant. Click on Help (in Configure Service Registry) then tell us the answer to the question. Few of us have version 8, and would like to be well prepared!
by ray.wurlod
Mon Jul 23, 2007 11:05 pm
Forum: IBM QualityStage
Topic: Error running match stage in parallel mode
Replies: 2
Views: 1988

First guess is that your system is struggling to start enough processes quickly enough. There is an environment variable with TIMEOUT in its name that may help (I'm not doing DataStage this week, so haven't any means to check the exact name - I think it's APT_PM_NODE_TIMEOUT.
by ray.wurlod
Mon Jul 23, 2007 2:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error accessing Parallel engine
Replies: 5
Views: 2979

Welcome aboard.

Please begin a new thread. This may be an unrelated problem. We frown upon hijacking threads.
by ray.wurlod
Mon Jul 23, 2007 2:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: INSERTing maximum value
Replies: 17
Views: 4634

The Column Generator in my design simply generates the constant 'X' that you use to execute the Lookup.

Technical Rant
"Holes" DO NOT MATTER in surrogate keys. Surrogate keys are about uniqueness - NOTHING ELSE.

With Round Robin partitioning you are unlikely to get any holes.
by ray.wurlod
Mon Jul 23, 2007 1:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: julian date
Replies: 4
Views: 1689

Welcome aboard.

Learn the Iconv() and Oconv() functions. They are very powerful.

Code: Select all

Oconv(Iconv(Right(InLink.TheString,7), "D4JY"), "D/DMY[2,2,4]")
by ray.wurlod
Mon Jul 23, 2007 1:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DateTimestamp
Replies: 20
Views: 4770

In a server job just format the concatenation.

Code: Select all

Fmt(col1:col2,"####-##-## ##:##:##")


Not sure how you established that 06 is pm in your example, but ISO 8601 specifies 24 hour clock for a timestamp.