Method 2: Reset or re-compile the job sequence. If you want to use different parameter values, then restartability is invalid.
Search found 53125 matches
- Thu Aug 21, 2008 4:17 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: current date in the check point
- Replies: 9
- Views: 1920
- Thu Aug 21, 2008 4:16 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Perform join on multiple columns with OR condition
- Replies: 4
- Views: 935
- Thu Aug 21, 2008 4:14 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Input buffer overrun
- Replies: 1
- Views: 2619
- Thu Aug 21, 2008 4:11 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Consuming split files in a job
- Replies: 12
- Views: 2601
- Wed Aug 20, 2008 11:03 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Dividing an integer
- Replies: 15
- Views: 6455
- Wed Aug 20, 2008 11:00 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Dividing an integer
- Replies: 15
- Views: 6455
- Wed Aug 20, 2008 10:59 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Primary keys in schema File
- Replies: 3
- Views: 1647
- Wed Aug 20, 2008 10:14 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Good Data transforming approach
- Replies: 9
- Views: 1885
You may be surprised how many unwritten business rules you can discover when you profile even the in-house data. Particularly domain-related ones. DBAs are reluctant to add CHECK constraints claiming (correctly) that they slow inserts and updates. Suddenly the business introduces web-based data entr...
- Wed Aug 20, 2008 10:13 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Using storedprocedure stage
- Replies: 1
- Views: 830
- Wed Aug 20, 2008 10:11 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Float Datatype handling - Conversion from dfloat to sfloat
- Replies: 5
- Views: 2621
- Wed Aug 20, 2008 9:14 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Dividing an integer
- Replies: 15
- Views: 6455
How about the following?
Code: Select all
AsFloat( DSLink3.INSTR_SET_HRS) / 10.0- Wed Aug 20, 2008 9:12 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Good Data transforming approach
- Replies: 9
- Views: 1885
- Wed Aug 20, 2008 7:58 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Primary keys in schema File
- Replies: 3
- Views: 1647
Open a table definition that has a primary key. Go to the layout tab and choose the parallel option. You will find out there what is required. (From memory, since I can't check at the moment, I don't believe there is any mechanism for identifying a key in a record schema, since that item of informat...
- Wed Aug 20, 2008 7:56 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Dividing an integer
- Replies: 15
- Views: 6455
- Wed Aug 20, 2008 7:55 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Good Data transforming approach
- Replies: 9
- Views: 1885
I expect that the use of many stage variables (one per field that needs to be checked) is an attempt to achieve maintainability. The svValidRecord (used in constraint expression) is then - logically at least - the AND of all those results. I agree with that approach, purely on the grounds of maintai...