Search found 53125 matches
- Tue May 23, 2006 8:29 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: deleting dataset
- Replies: 6
- Views: 1326
- Tue May 23, 2006 6:29 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Universe - Impact of adding additional columns to table
- Replies: 5
- Views: 1420
Yes. Even though UV stage identifies columns by name, the underlying engine still must use field-number-based navigation. It's akin to using partial table information in other database stages; the columns you don't name aren't accessed. Therefore adding columns to the table will not affect existing ...
- Tue May 23, 2006 6:26 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Custom Routine in Generating a Sequence Number
- Replies: 7
- Views: 1684
- Tue May 23, 2006 4:35 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: 'packaging' jobs
- Replies: 1
- Views: 928
Yes and no. The term DataStage uses is "export", which creates a pure text image (DSX or XML format). When imported on the other server, this resolves into the appropriate structures within the DataStage Repository there. The point you've missed is that there is no single "deployment directory" crea...
- Tue May 23, 2006 3:18 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Limitation in aggregator stage??
- Replies: 2
- Views: 1344
- Tue May 23, 2006 3:17 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Error Trapping with the OLE DB Stage
- Replies: 3
- Views: 1291
- Tue May 23, 2006 3:05 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Quality Stage
- Replies: 1
- Views: 910
There is a separate forum for QualityStage, you might benefit from looking there. QualityStage performs four tasks; investigation of your data to determine how comprehensively your rules cover the data, standardization of data into standard forms (for example "Av", "Ave" and "Avenue" can all be conv...
- Tue May 23, 2006 3:01 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Server to Enterprise Edition Transition Lab!
- Replies: 7
- Views: 1987
- Tue May 23, 2006 2:52 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: end of file
- Replies: 2
- Views: 1363
In parallel jobs provision is made for a final delimiter as well as a record terminator. This allows data terminated with a character, such as ";", to be managed properly without having to declare a dummy column and manage multiple field delimiters. There are, therefore, two properties. Your case, t...
- Tue May 23, 2006 2:47 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Warning: "dfloat" to result type decimal
- Replies: 25
- Views: 7776
- Tue May 23, 2006 2:44 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Passing Filenames between Jobs in Job Sequence
- Replies: 5
- Views: 1444
That's basically because there is no mechanism for doing so. Essentially you will need to touch down a list of file names to disk, which the subsequent job can read. Of course, you could pass the XX parameter to each of the jobs run from the job sequence, and allow it to be used to construct the fil...
- Tue May 23, 2006 2:42 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: PX Tutorial help
- Replies: 3
- Views: 1174
- Tue May 23, 2006 2:36 pm
- Forum: IBM QualityStage
- Topic: Installing QualityStage plug-in in DataStage
- Replies: 5
- Views: 2408
- Tue May 23, 2006 2:34 pm
- Forum: Data Integration
- Topic: function to get the date of the next monday.
- Replies: 2
- Views: 9304
The trick you need is to realize that the internal format of dates in server jobs is an integer. If you divide by 7 and take the remainder (the Mod() function), then the result is 0 for Sunday, 1 for Monday, through to 6 for Saturday. So you take the date (current date is available as system variabl...
- Tue May 23, 2006 2:24 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: executable file access error
- Replies: 2
- Views: 790
Your job properties are open somewhere else, perhaps in Manager, perhaps in Director (Monitor view), perhaps by a different process. Did you shut down a client improperly? Whatever opened the job left a lock in the repository to indicate that the job was in use, and that lock remains. You will need ...