Search found 15603 matches
- Fri Feb 17, 2006 5:23 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Date check for business validation
- Replies: 14
- Views: 5590
- Fri Feb 17, 2006 5:07 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Date check for business validation
- Replies: 14
- Views: 5590
Parag, were you looking for advice on how to do this or were you looking for a solution? You now have the information you need - you can get the numeric day of week with the OCONV(juliandate,'DW', so if you want to handle Friday in addition to Sat and Sun you would change your condition to read ">4"...
- Fri Feb 17, 2006 4:36 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Error compiling Parallel Transformer
- Replies: 3
- Views: 1809
Re: Error compiling Parallel Transformer
...##W TBLD 000000 18:03:25(003) <main_program> Error when checking composite operator: Output from subprocess: Couldn't change directory to /tmp: No such file or directory ... Do you have a "/tmp" folder with write/read access for your user? Have you problems only with this transform or any transf...
- Fri Feb 17, 2006 4:33 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Date check for business validation
- Replies: 14
- Views: 5590
You would use the OCONV function and the 'DW' conversion to get the DOW with 1 being Monday.
Code: Select all
IF OCONV(DATE()+30,'DW') >5 THEN "Weekend" ELSE "Weekday"- Fri Feb 17, 2006 4:16 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sequential stage - changing the default padding symbol
- Replies: 8
- Views: 5499
- Fri Feb 17, 2006 4:04 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Date check for business validation
- Replies: 14
- Views: 5590
There are many ways of doing this and the optimal one depends upon the type and format of your source and where you are doing this comparison. How do you want to add a month? Add 30 days or take the current date and change the month part. If it does fall on a weekend, do you want to take the Friday ...
- Fri Feb 17, 2006 3:00 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Take export from UNIX
- Replies: 3
- Views: 932
- Fri Feb 17, 2006 1:57 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: corrupt row
- Replies: 5
- Views: 1598
What Ray is stating is that if you have 2 processes write to the same sequential file at the same time you will most likely get corruption. Are both of these writes occurring in the same job? If yes, you need to look at the design to ensure that the file is first overwritten with one record and then...
- Thu Feb 16, 2006 11:38 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Generating type-checking routines from metadata
- Replies: 6
- Views: 1019
You would need to do quite a bit of programming, either in C++ for a pure PX job or in the Server BASIC language, to implement functionality of this scope. If your structure file is well-formed it can be read and parsed and then a PX schema could automatically be generated for each type of incoming ...
- Thu Feb 16, 2006 8:31 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job Sequence failing due to unrecoverable error
- Replies: 3
- Views: 8747
- Thu Feb 16, 2006 8:29 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Generating type-checking routines from metadata
- Replies: 6
- Views: 1019
I can think of a couple of different approaches to this. But it does come down to how you want to identify the different formats. I would use an approach that reads each record in as one long string. If your files have column delimiters and variable length columns; then perhaps you could use a combi...
- Thu Feb 16, 2006 7:48 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Lookup fileset job not running in other system(server)
- Replies: 3
- Views: 838
- Thu Feb 16, 2006 5:18 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Pivot in Parallel job gives diff result than in Server Jobs
- Replies: 6
- Views: 1519
- Thu Feb 16, 2006 5:15 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to call DataStage job through shell script
- Replies: 5
- Views: 1924
1. Urgent requests need to go to your support provider and don't belong in this volunteer forum. What is urgent for you is not necessarily urgent for anyone else. 2. Please post in the correct forum, this is for FAQs and not for general questions. 3. Please use the search facility, your question has...
- Thu Feb 16, 2006 5:09 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Column Generator Vs Transformer
- Replies: 7
- Views: 4822
I just wrote a test job to compare the relative speeds of generating a single VarChar(32) column and filling it with the constant value of "Test" between using a Transform and a Column Generator. After several runs of 5 minutes the average speeds worked out to Transform Stage- 515,463 rows per secon...