Search found 53125 matches
- Mon Jun 02, 2008 1:04 am
- Forum: General
- Topic: junk character - how to identify
- Replies: 12
- Views: 3371
- Mon Jun 02, 2008 1:03 am
- Forum: General
- Topic: Best/easiest way to capture reject records in datastage
- Replies: 17
- Views: 19317
- Mon Jun 02, 2008 1:00 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to insert missed @ or .(dot) in an email address
- Replies: 3
- Views: 1288
- Mon Jun 02, 2008 12:59 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: cannot open executable job file RT_CONFIG0
- Replies: 22
- Views: 5338
- Mon Jun 02, 2008 12:55 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Correct email address by using soundex/phonetics approach
- Replies: 3
- Views: 1478
- Mon Jun 02, 2008 12:52 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Routine within a Transformer
- Replies: 2
- Views: 1136
- Mon Jun 02, 2008 12:49 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Dynamic handling metadata
- Replies: 13
- Views: 3447
- Mon Jun 02, 2008 12:47 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Converting a nullable source to a non-nullable result
- Replies: 17
- Views: 6320
- Sun Jun 01, 2008 8:56 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Partitioning
- Replies: 5
- Views: 1631
The only partitioning algorithms that could cause a self-deadlock (assuming you're not updating the same table as the one from which you are reading) are Entire or a key-based algorithm (Hash or Modulus) where the partitioning key differs from the table primary key. Every other partitioning algorith...
- Sun Jun 01, 2008 8:53 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Splitting Pipe delimited file
- Replies: 7
- Views: 2997
- Sun Jun 01, 2008 7:17 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Splitting Pipe delimited file
- Replies: 7
- Views: 2997
expression = @NULL is not a valid thing to do. You are attempting to compare the result of expression against an unknown value. The result can only be NULL (unknown), which causes a constraint expression to return "false". What you need instead is IsNull(expression), which returns "true" if the res...
- Sun Jun 01, 2008 4:04 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: reading file validations and log file
- Replies: 5
- Views: 2173
Not quite. @INROWNUM is the number of rows into the Transformer stage, not the number of rows sent into the target. @OUTROWNUM is the number of rows sent to the target, each of these may or may not be successful. You need reject handling in the job to be confident about how many of the rows were suc...
- Sun Jun 01, 2008 2:32 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Change Capture Stage
- Replies: 5
- Views: 2133
- Sun Jun 01, 2008 2:31 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Partitioning
- Replies: 5
- Views: 1631
(Auto) is the same as "Same" when the link is between two parallel stages (neither of which is a reference link). Partitioning guarantees that each row is processed on only one node. Mutually exclusive constraints guarantee that each input row (on any particular node) is directed to only one output ...
- Sun Jun 01, 2008 2:25 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: reading file validations and log file
- Replies: 5
- Views: 2173
The row number that you are reading from the file is reported in the Transformer stage via the @INROWNUM system variable. The number of rows that were sent to the target (whether successfully or not) is reported in the @OUTROWNUM system variable on each output link from the Transformer stage. You ca...