Search found 53125 matches

by ray.wurlod
Fri Jun 08, 2007 1:19 am
Forum: General
Topic: how to rename the category
Replies: 4
Views: 1535

CATEGORY is an indexed column in each of the Repository tables in which design-time metadata are stored. That is, because they are in a series of database tables, they are not accessible from UNIX. As you note, it would not be safe to issue an UPDATE statement against the table, because this would n...
by ray.wurlod
Fri Jun 08, 2007 1:16 am
Forum: IBM QualityStage
Topic: french Charac in data
Replies: 1
Views: 1192

How are you handling them on the older version and how are you handling them differently on the new version? In particular, what character maps have you specified?
by ray.wurlod
Thu Jun 07, 2007 2:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SQL Error codes from UNIX box
Replies: 3
Views: 1138

Then post your question on a UNIX script forum. DSXchange gives DataStage solutions!

How do you propose to capture the SQL code IN the UNIX script? You can use the exit command to return the value - that part's easy.
by ray.wurlod
Thu Jun 07, 2007 2:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Current Month Less 24 months
Replies: 6
Views: 1801

Heck no. Count back two years. Subtract one from the day if today is February 29th.
by ray.wurlod
Thu Jun 07, 2007 2:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Read log files and write custom messages in Exception file.
Replies: 4
Views: 1316

That, my friend, is called consulting, and is how some of us make our living. If you would like to post what you have attempted, and why you believe it does not fulfil expectations (with error messages if any exist), then we would certainly comment upon that. Make sure your code is nicely formatted ...
by ray.wurlod
Thu Jun 07, 2007 2:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error with Date
Replies: 6
Views: 1253

You start by informing us what the target database is, and what its expected date format is. Then you adjust your value accordingly.
by ray.wurlod
Thu Jun 07, 2007 2:32 am
Forum: General
Topic: how to rename the category
Replies: 4
Views: 1535

It is not possible using the GUI. All you can do is to create the new category, move all items from the old category to the new category (you can use drag-and-drop), then delete the old category.
by ray.wurlod
Thu Jun 07, 2007 1:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle stage Update
Replies: 3
Views: 1403

Put an EXISTS test in the extraction.

Code: Select all

SELECT 1 FROM sourcetable WHERE EXISTS ( condition );


Or include a sequentially-executed Transformer stage constrained so that its output link passes only one row. For example:

Code: Select all

@INROWNUM = 1
by ray.wurlod
Thu Jun 07, 2007 12:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SQL Error codes from UNIX box
Replies: 3
Views: 1138

Create a reject link from your Enterprise database stage. It will automatically contain the columns from its input link plus a column called sqlcode that will contain the SQL error code returned from the database server.
by ray.wurlod
Thu Jun 07, 2007 12:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: C code execution on AIX
Replies: 4
Views: 1243

WHAT worked?

Once you've posted the answer to that question, please mark the thread as resolved.
by ray.wurlod
Thu Jun 07, 2007 12:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: why to use copy stage .....
Replies: 7
Views: 2541

A Copy stage with no output link is an excellent placeholder while you are effecting incremental design. It will consume all the rows sent into it and have nowhere to transfer them, so will simply discard them.
by ray.wurlod
Thu Jun 07, 2007 12:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle stage Update
Replies: 3
Views: 1403

Be more specific about the UPDATE statement. It is in the very nature of DataStage to send a row to be updated for every row that arrives in the stage. The only way to update only one row is to cause only one row to arrive in the stage. To update only one row for each row received into the stage the...
by ray.wurlod
Thu Jun 07, 2007 12:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to capture projects metrics
Replies: 2
Views: 750

Far better (and automatic) statistics collection is performed in Version 8 plus you can get an all new resource estimator that can be based on the job design alone or on running a sample of data.
by ray.wurlod
Wed Jun 06, 2007 11:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: To speed up the aggregator
Replies: 15
Views: 5784

At the menu prompt enter each number followed by a question mark; for example 2? - this will give you more information. Which ones to change depends on where your performance problem is. Increasing the reporting interval (so that the stage updates its status less frequently) will always help. Sorted...
by ray.wurlod
Wed Jun 06, 2007 10:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: writing batch control for ftp files in unix
Replies: 3
Views: 1254

Single line batch routine that invokes your UNIX script using DSExecute()