Search found 53125 matches
- Mon Oct 24, 2011 7:08 am
- Forum: Information Analyzer (formerly ProfileStage)
- Topic: how to create fixed width text file
- Replies: 8
- Views: 3866
- Sun Oct 23, 2011 11:01 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Checking leading zeroes.
- Replies: 5
- Views: 1808
If there are leading zeroes the first digit in the number will be 0. It is sufficient to test for this.
Code: Select all
Left(InLink.TheNumber,1) = "0"- Sun Oct 23, 2011 10:57 pm
- Forum: Information Analyzer (formerly ProfileStage)
- Topic: how to create fixed width text file
- Replies: 8
- Views: 3866
- Sun Oct 23, 2011 10:26 am
- Forum: General
- Topic: Unlocking a job via another job
- Replies: 36
- Views: 9218
- Sat Oct 22, 2011 10:08 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Design Reusable job having CFF stage as Source
- Replies: 1
- Views: 871
- Sat Oct 22, 2011 10:07 am
- Forum: General
- Topic: Unlocking a job via another job
- Replies: 36
- Views: 9218
- Sat Oct 22, 2011 10:05 am
- Forum: General
- Topic: Job locked
- Replies: 9
- Views: 8113
- Sat Oct 22, 2011 10:04 am
- Forum: Information Analyzer (formerly ProfileStage)
- Topic: how to create fixed width text file
- Replies: 8
- Views: 3866
- Fri Oct 21, 2011 5:05 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: abort the Job
- Replies: 8
- Views: 2857
- Fri Oct 21, 2011 2:08 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Need help in storing global parameters/variables
- Replies: 5
- Views: 1242
- Fri Oct 21, 2011 2:06 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Aggregator Error
- Replies: 7
- Views: 2417
- Fri Oct 21, 2011 2:05 pm
- Forum: General
- Topic: Problem with Import Metadata from Oracle
- Replies: 2
- Views: 1432
- Fri Oct 21, 2011 4:52 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Heap allocation error - ODBC stage
- Replies: 6
- Views: 2451
- Fri Oct 21, 2011 4:49 am
- Forum: General
- Topic: DS job is getting failed when executing through shell script
- Replies: 11
- Views: 4404
- Thu Oct 20, 2011 6:07 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Record Count
- Replies: 5
- Views: 1587
Run the rows into an Aggregator to count them. The count will be available downstream of the Aggregator stage once all rows are in. Note that the records on each node are counted separately. So, on a two node configuration, you will get two row counts. If we understood a little more about your requi...