Search found 53125 matches

by ray.wurlod
Sun May 13, 2007 11:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DS Server Routine which can give information about the link.
Replies: 6
Views: 1261

What kind of file? You can execute the echo command via DSExecute, or go through the more formal OpenSeq, WriteSeq and CloseSeq statements in DataStage BASIC. Search the forum for a useful routine called OpenSequentialFile().
by ray.wurlod
Sun May 13, 2007 11:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Are Server jobs will run on PX?
Replies: 6
Views: 1100

The rules change in version 8, however. Some (all?) import/export activity becomes unavoidable, due to the different platform.
by ray.wurlod
Sun May 13, 2007 11:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Count the sum of of records in a particular column
Replies: 8
Views: 1474

As I said, same rules as SQL. The Aggregator stage does not have Group Key as a mandatory property.
by ray.wurlod
Sun May 13, 2007 10:59 pm
Forum: General
Topic: How to collect job status
Replies: 12
Views: 4268

It will help, as will the -stageinfo and -linkinfo options. To use these effectively in a script you probably also need the -lstages and -llinks options also.
by ray.wurlod
Sun May 13, 2007 10:57 pm
Forum: General
Topic: oracle 8i/9i/10g
Replies: 2
Views: 1338

When's the interview?
by ray.wurlod
Sun May 13, 2007 8:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Varchar Type key field in Universe Hash file Stage
Replies: 9
Views: 3672

Use SETFILE in a project to create a VOC pointer. Then issue the CREATE.INDEX command. You can remove the VOC pointer afterwards if you wish.
by ray.wurlod
Sun May 13, 2007 8:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Are Server jobs will run on PX?
Replies: 6
Views: 1100

Nick's opening statement is really misleading. While it is true (in version 7.5 and earlier) to state that there is no benefit to running server jobs in a site where Enterprise Edition is installed and server jobs are licensed, there is also no downside - server jobs run as they have always done. In...
by ray.wurlod
Sun May 13, 2007 8:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Varchar Type key field in Universe Hash file Stage
Replies: 9
Views: 3672

This is a SYNTAX description, not the actual command that you, individually, need to use. You are expected to replace the metasyntactic variables (the parts encased in angle brackets) with your own values. Further, the pipe character in a syntax description indicates an alternative - you must provid...
by ray.wurlod
Sun May 13, 2007 8:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can I use Insert or update statement in User defined sql?
Replies: 9
Views: 1797

Specify the "Update action" property as "insert or update" or "update or insert". Look at the View SQL tab. Then revert to user defined SQL and put in the two statements.

Otherwise, include a flag ('U' or 'I') and call a stored procedure that implements your user-defined SQL statements.
by ray.wurlod
Sun May 13, 2007 4:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Count the sum of of records in a particular column
Replies: 8
Views: 1474

Welcome aboard. :D

It works the same way as in SQL - if there's no grouping key you get one row containing the results of the aggregate functions.
by ray.wurlod
Sun May 13, 2007 4:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Preventing warnings for a reject link output file
Replies: 7
Views: 1404

So set them in the Sequential File stage. It doesn't really matter; the column collection is a property of the link, not of either stage.
by ray.wurlod
Sun May 13, 2007 4:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using File-pattern and Column names
Replies: 2
Views: 822

It doesn't fail - you merely get import warnings which, if these are the only ones, can be ignored (or even demoted to informational in this job).
by ray.wurlod
Sun May 13, 2007 4:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Modify stage error
Replies: 20
Views: 10710

New? 44 posts? Ah well. Open the job properties where you will find a tab called Generated OSH. It's there.
by ray.wurlod
Sun May 13, 2007 4:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: mismatch in join stage
Replies: 4
Views: 1402

Take a look at the score. DataStage is probably inserting tsort operators that sort on the hash partitioning key. Add Sort stage set to "don't sort (previously sorted)" on the link from the Data Set.
by ray.wurlod
Sun May 13, 2007 4:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: job want to update the AS/400 table
Replies: 3
Views: 1157

Actually I would like to use Insert or Update function. But now I can give only one function(update or insert) at a time for my user defined sql. So may I know whether I can give both statements(insert & update) to my user defined sql? If I can , may I know what is the command? Your assertion i...