Search found 15603 matches

by ArndW
Mon Nov 22, 2010 10:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sftp ing the files and deleting files on remote server.
Replies: 17
Views: 11644

SFTP allows shelling out on the local host and executing commands. Thus, if your sftp is "push" then it will work, if you "pull" the files then you will need to do something else, perhaps "rsh" or "ssh" to execute the delete command.
by ArndW
Mon Nov 22, 2010 10:31 am
Forum: General
Topic: How to mail rejected records..
Replies: 18
Views: 5600

Try to put a dummy copy stage between the reject link from the lookup and the input link to the BASIC stage, this transforms the link type to a "normal" one.
by ArndW
Mon Nov 22, 2010 10:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading Multiple record types in a file using CFF stage
Replies: 4
Views: 2462

Yes, you can declare multiple record types in a CFF stage. I am not at a DataStage client now, but you can declare various 01-level type records in the "Record" tab of the CFF stage.
by ArndW
Mon Nov 22, 2010 10:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Delimiter not found
Replies: 4
Views: 1654

What happened is that the job is trying to fit the long timestamp value string into a Varchar(8) and it doesn't fit, thus the error message. You have gotten your columns mixed up - either incorrect order or incorrect number of columns.
by ArndW
Mon Nov 22, 2010 8:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Timeout Expired
Replies: 5
Views: 1876

If the error is not reproduceable if you run with a single-node configuration, or repartition to your database key column, or commit each row then you might hazard a guess that you have a database deadlock issue at the heart of the problem.
by ArndW
Mon Nov 22, 2010 8:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: same partioning not working correctly in joiner stage
Replies: 4
Views: 1705

If you turn on APT_DUMP_SCORE and look at the generated scores do you see any repartitioning being performed?
by ArndW
Mon Nov 22, 2010 8:36 am
Forum: General
Topic: Email Notification Stage Issue
Replies: 5
Views: 3596

I would turn on echoing commands and output in your shell script. There are various means to do this, search Google for "debugging shell script {YourUNIXFlavor}" to see which options are open to you on your platform.
by ArndW
Mon Nov 22, 2010 8:31 am
Forum: General
Topic: How to mail rejected records..
Replies: 18
Views: 5600

Does you BASIC transform stage in a PX job have one input and one output? No reference inputs are allowed in the BASIC transform stage, unlike the normal server transform stage.
by ArndW
Mon Nov 22, 2010 6:22 am
Forum: General
Topic: How to mail rejected records..
Replies: 18
Views: 5600

Because before-job and after-job routines are not called from transform stages. PX Transform stages cannot call Server functions. You can use a BASIC transform stage and use Server functions in Parallel jobs; but this is generally not recommended unless it is absolutely unavoidable.
by ArndW
Mon Nov 22, 2010 6:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: List of all DS jobs
Replies: 3
Views: 1492

From the command line execute "dsjob -ljobs MYPROJECT". This is documented in the Programmer's Guide (page 4 at Version 8.1)
by ArndW
Mon Nov 22, 2010 3:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Information on Buildops Stage
Replies: 3
Views: 1235

It is not so simple as you think. You can quickly put together a "hello world" type of buildop by creating a "Build" type stage in the designer and having the job auto-read and auto-write links and then put your logic in the "per-record" section. Compile the customer st...
by ArndW
Mon Nov 22, 2010 3:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: (0.375 * 2.803) in transformer gives wierd results
Replies: 3
Views: 929

You need to realize that a floating point number cannot represent each possible real number; internally the number is stored as a mantissa and exponent value which approaches the actual number but may not be equal to it. In this case the "0.375" and "2.803" values have been conve...
by ArndW
Mon Nov 22, 2010 3:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: what is job score
Replies: 3
Views: 1345

The analogy used for the original Orchestrate product is an orchestra with a conductor, section leaders (i.e. the first wind or string) and players. In music, the "score" is the book of notes that each instrument player uses. Thus the "score" in a PX job is the script which is ex...
by ArndW
Mon Nov 22, 2010 3:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Timeout Expired
Replies: 5
Views: 1876

Yes, re-running might help to diagnose the problem. Are you running on a 1-node configuration file or more? Are you inserting or updating (or both)?
by ArndW
Mon Nov 22, 2010 3:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to perform rounding in stage variables
Replies: 1
Views: 809

I'm not sure what "to nearest zero" implies, but can you not use a type conversion function such as "DecimalToDecimal" to achieve your desired result?