Search found 53125 matches
- Tue Feb 16, 2010 11:43 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Compress Sequential File
- Replies: 8
- Views: 6373
- Tue Feb 16, 2010 11:41 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Find a quarter from a date
- Replies: 7
- Views: 3152
You have to do some arithmetic. The first three months you need 1, the second three months you need 2, and so on. Mod(month,3) gives the wrong result, you need something like Int(month+(month<>(month-Mod(month,3))/3) If that seems abstruse, go with a functionally equivalent If..Then..Else construct....
- Tue Feb 16, 2010 11:29 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Surrogate Key Stage Error-- Unable to lock state file
- Replies: 8
- Views: 4548
- Tue Feb 16, 2010 11:10 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Compress Sequential File
- Replies: 8
- Views: 6373
- Tue Feb 16, 2010 11:09 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Surrogate Key Stage Error-- Unable to lock state file
- Replies: 8
- Views: 4548
- Tue Feb 16, 2010 5:48 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: help me how to implement this function in datastage
- Replies: 3
- Views: 1225
- Tue Feb 16, 2010 2:49 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Creating more records based on the day count
- Replies: 3
- Views: 1685
- Tue Feb 16, 2010 2:47 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Retrieve License XML file
- Replies: 6
- Views: 1891
- Tue Feb 16, 2010 1:21 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How do you handle break processing in DataStage
- Replies: 6
- Views: 2074
- Tue Feb 16, 2010 1:19 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Metadata Quey
- Replies: 7
- Views: 2157
- Tue Feb 16, 2010 1:17 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Routine in DS
- Replies: 4
- Views: 1889
There is an excellent training DVD Programming with DataStage BASIC available from the DSXchange Learning Center
- Tue Feb 16, 2010 1:16 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Regarding WAS service
- Replies: 3
- Views: 1351
- Tue Feb 16, 2010 1:15 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Retrieve License XML file
- Replies: 6
- Views: 1891
You may need single quotes around the wildcard. It's unlikely that you have no XML files at all on the system.
Code: Select all
find / -name '*.xml' -print 2>/dev/null- Tue Feb 16, 2010 1:14 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Picking metadata at run time
- Replies: 5
- Views: 1998
Seriously, how often are table definitions changed in a real production environment. The usual (professional) approach is that such changes are planned, and advised to everyone involved, including ETL developers so that they can assess the impact. A proper software development lifecycle should apply...
- Tue Feb 16, 2010 1:11 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Error in Lookup stage with too many number of references
- Replies: 2
- Views: 2090