Search found 53125 matches

by ray.wurlod
Tue Dec 06, 2011 3:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: data reading problem in .csv format
Replies: 5
Views: 1887

Put a reject link onto the Sequential File stage that is writing the file. Capture that in a Peek stage. It may be useful in a diagnostic sense.
by ray.wurlod
Tue Dec 06, 2011 3:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Splitting single row into multiple rows with Delimiter '|'
Replies: 12
Views: 13871

There is a simple solution using a server job, in which you convert the "|" characters to value marks then write to a hashed file. Then you read back from the hashed file normalized on the multi-valued field. Parallel jobs have no equivalent to this technique, though you might be able to e...
by ray.wurlod
Tue Dec 06, 2011 2:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to view all records from sequential file
Replies: 20
Views: 6585

Maybe DataStage developers don't like Cadillacs? :lol:

Seriously, though, does the 253rd record or thereabouts contain an "end of file" character (Ctrl-D)?
by ray.wurlod
Tue Dec 06, 2011 2:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: innerjoin
Replies: 4
Views: 1695

Yes. We're into Cartesian product territory if more than one is allowed. You can always use multiple Lookup stages.
by ray.wurlod
Tue Dec 06, 2011 2:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: HASH file WITH clause
Replies: 2
Views: 1173

First off, the correct terminology is "hashed" file. You can certainly use a WITH clause, though without the WITH preposition, in the Selection tab of a Hashed File stage. However, what you are trying to do is not a valid syntax for a WITH clause. SELECT is a verb and FILE2 is a file name,...
by ray.wurlod
Tue Dec 06, 2011 2:49 pm
Forum: General
Topic: Use existing project
Replies: 1
Views: 637

Welcome aboard.

The answer is no.

The reason is that the two servers maintain independent locking mechanisms, and you would have nothing in place to prevent one server from destroying or damaging components in use on the other server.
by ray.wurlod
Tue Dec 06, 2011 2:45 pm
Forum: General
Topic: Design question on handling exceptions
Replies: 6
Views: 1545

Explicit Failure triggers take precedence over Exception Handler or other automatic handling of activities that fail. Since JA3 has an explicit Failure trigger it can not invoke the Exception Handler. You need a separate Routine activity - even if it calls the same routine - downstream of the Failur...
by ray.wurlod
Tue Dec 06, 2011 2:43 pm
Forum: General
Topic: Saving table definitions
Replies: 3
Views: 2568

I suspect your domain name - the name of the machine on which the services tier is installed - is not correct (this is not the same as your project name necessarily). If that IS your domain name, try specifying port number 9080 in the -domain argument.
by ray.wurlod
Tue Dec 06, 2011 2:39 pm
Forum:
Topic: Publishing Business Terms
Replies: 2
Views: 1415

I feel an enhancement request coming on...
by ray.wurlod
Tue Dec 06, 2011 1:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: innerjoin
Replies: 4
Views: 1695

If you allow duplicates to be returned from the lookup, it's a true Left Outer join. Was this an interview question?
by ray.wurlod
Tue Dec 06, 2011 1:39 am
Forum: General
Topic: To add a function to the parameter value ?
Replies: 12
Views: 3889

You could have had hyphens with "D4-YMD" or underscores with "D4_YMD". Then you wouldn't have needed the "MCN". Possibly better also to enforce two-digits for month and day, for example "DYMD[4,2,2]". Without that, 2011112 is ambiguous.
by ray.wurlod
Mon Dec 05, 2011 10:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential File Stage -- Flat file data load
Replies: 4
Views: 3066

I always prefer Char to VarChar in fixed width files. For one thing it's more efficient.
by ray.wurlod
Mon Dec 05, 2011 10:07 pm
Forum: IBM QualityStage
Topic: Match DataBase
Replies: 3
Views: 1296

Follow the link on the DSXchange home page. I have no idea whether or not the special price is still available. But even at $99 it's good value (less than 30c per day). And corporate discounts for multiple memberships are available.
by ray.wurlod
Mon Dec 05, 2011 9:52 pm
Forum:
Topic: Publishing Business Terms
Replies: 2
Views: 1415

Publishing Business Terms

Is there a command line interface that can be used to publish business terms from the Development Glossary to the Published Glossary.

(Please note that these are new concepts in version 8.7; the question is not about promoting from development to production.)
by ray.wurlod
Mon Dec 05, 2011 5:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup warning - ignoring duplicates
Replies: 1
Views: 1480

If they're in seven separate Lookup stages, the warning message will identify the stage name and you'll have an unambiguous method for determining which table has duplicates. Otherwise no (within DataStage - you could, of course, run queries against these tables).