Search found 53125 matches

by ray.wurlod
Mon Apr 26, 2010 5:49 pm
Forum: General
Topic: How to parse string input into rows by delimiter
Replies: 5
Views: 2574

If you're prepared to use a BASIC Transformer stage this is a very easy task - convert each X into a sharp sign (#) and use that as the mask in a Fmt() function.

There's probably a solution using the parallel Transformer stage. What have you attempted thus far?
by ray.wurlod
Mon Apr 26, 2010 5:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage Import Command Line
Replies: 4
Views: 7951

Can you export/import successfully using Designer client? If so, then there's something wrong with the way you are using dssh or DS_IMPORTDSX but, without more information, there's no help we can give you on that - you need to let us know precisely what you did and what error messages obtained.
by ray.wurlod
Mon Apr 26, 2010 5:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Current date parameter
Replies: 11
Views: 4290

Use the expression

Code: Select all

Oconv(@DATE,"DYM[4,2]":@VM:"MCN")
perhaps in a User Variables activity so that you only have to execute the expression once.
by ray.wurlod
Mon Apr 26, 2010 5:40 pm
Forum: General
Topic: Unable to export a job getting error 30107 error
Replies: 5
Views: 1941

Open Admintrator client, select project, click Command button to open command window. There is no single command to check all indexes but, if you have exclusive access to the project, you could simply rebuild them anyway using the command DS.REINDEX ALL. Otherwise you need to execute each of the fol...
by ray.wurlod
Mon Apr 26, 2010 2:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dynamic Processing
Replies: 6
Views: 2021

Why?

20 jobs will make it easy to maintain into the future.
by ray.wurlod
Mon Apr 26, 2010 2:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Partition after the Continuous funnel)
Replies: 0
Views: 2263

It's not necessary. The Funnel stage is a parallel stage. Anything it does is done on each node on which it executes. Separately. Partitioning is preserved.
by ray.wurlod
Mon Apr 26, 2010 2:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error: Schema reconciliation detected a size mismatch
Replies: 7
Views: 8799

A sequencer works very simply.
Its output fires if any/all of its inputs are triggered.
by ray.wurlod
Mon Apr 26, 2010 2:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can anybody explain - Use of RPC in Server Jobs
Replies: 6
Views: 2217

Canada also has RCMP

:lol:
by ray.wurlod
Mon Apr 26, 2010 2:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: incremental date
Replies: 3
Views: 1620

A Routine activity is a sequence component that invokes a routine. The routine (which you would need to create) calculates the required date, which can be passed back as its return argument or through a user-definable system variable.
by ray.wurlod
Mon Apr 26, 2010 2:41 pm
Forum: General
Topic: Unable to export a job getting error 30107 error
Replies: 5
Views: 1941

Something - perhaps invalid indexes - is preventing a SELECT from completing successfully. Check that your repository indexes are intact and up to date.
by ray.wurlod
Mon Apr 26, 2010 6:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to lock sql server table?
Replies: 3
Views: 1190

Use the transaction isolation level property.
by ray.wurlod
Mon Apr 26, 2010 6:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSCheckRoutine
Replies: 5
Views: 2087

Then you might prefer the !EXIST routine, which you will find documented in the DataStage BASIC manual.

Another possibility is that DSCheckRoutine() is OK, but your routine has not successfully been compiled yet.
by ray.wurlod
Mon Apr 26, 2010 6:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Generating sequence numbers using Stage variables
Replies: 19
Views: 7536

If you track back far enough in history, there's a song called "Little Sir Echo".
by ray.wurlod
Mon Apr 26, 2010 6:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Selecting first record from a table
Replies: 5
Views: 1951

It's easy enough to select "only one" record from the table. For example you can constrain on ROWNUM = 1.
by ray.wurlod
Mon Apr 26, 2010 6:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Selecting first record from a table
Replies: 5
Views: 1951

It is a fundamental tenet of database design and usage that it is the database server, not the user, that determines order of storage. Therefore, unless every record is timestamped somehow with the date/time it was inserted (so that you can specify the oldest), there is no such thing as the first re...