Search found 6797 matches
- Thu Jun 22, 2006 7:38 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Connection to Pervasive database
- Replies: 4
- Views: 1189
- Thu Jun 22, 2006 7:06 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Generate a Sequential file with a header and footer??
- Replies: 14
- Views: 3418
- Thu Jun 22, 2006 7:05 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Failure Notification on Mobile
- Replies: 7
- Views: 1380
- Thu Jun 22, 2006 7:03 am
- Forum: Site/Forum
- Topic: ToolXchange?
- Replies: 4
- Views: 2203
- Thu Jun 22, 2006 6:59 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: convert a number in to word
- Replies: 9
- Views: 3036
I would suggest, if you have time, to develop a basic code for it and do this kind of manipulation in a basic transformer. If you actually google "convert numbers to words", you will find many programs written in different languages to assist you get the data structures. And if you can come up with ...
- Thu Jun 22, 2006 6:56 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Generate a Sequential file with a header and footer??
- Replies: 14
- Views: 3418
- Thu Jun 22, 2006 6:54 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Performance tuning with EtlStats reports
- Replies: 7
- Views: 1589
- Thu Jun 22, 2006 6:51 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Job status code
- Replies: 5
- Views: 1082
Pay attention to what Ray stated. If a job "finishes with warning" it actually did finish. You cannot abort that job from the sequence. It can stop from triggering the next job but not abort that particular job. For that you need to handle that inside the job itself, or maybe limit the warning to 1.
- Thu Jun 22, 2006 6:46 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: sequence number
- Replies: 12
- Views: 3854
- Wed Jun 21, 2006 1:15 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to remove stage data through Sequential file stage
- Replies: 12
- Views: 1566
- Wed Jun 21, 2006 1:13 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Renaming Files in DS
- Replies: 19
- Views: 3451
You're right... it's over on ADN. Knew it looked familiar. Turns out your syntax isn't quite right, even when fully pathing the files - you can only fully path the first file. If you supply a full path for the second argument you get the error you posted. Try: rename E:\file1.csv file2.csv and you ...
- Wed Jun 21, 2006 1:03 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Job status code
- Replies: 5
- Views: 1082
Is it just for status 2 that you need to stop the processing or for any status other than 1. If thats the case, then provide "Finished OK" expression in the trigger for the next job and provide another link coming out of the job activity that has expression "otherwise". Let that go to a sequencer wi...
- Wed Jun 21, 2006 11:12 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Run time
- Replies: 3
- Views: 873
or you can just use macro
Code: Select all
filename#DSJobStartDate#_#DSJobStartTime#.csv- Wed Jun 21, 2006 9:57 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Performance in Extraction
- Replies: 12
- Views: 2670
- Wed Jun 21, 2006 9:24 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to remove stage data through Sequential file stage
- Replies: 12
- Views: 1566
In the next job, you can do it in the before job subroutine. Also, i would advise not to delete the file untill the end of the entire process. You might be needing to look at the file if something goes wrong. Basically for debugging purposes. If that is not an issue, then i would go with Kris's sugg...