Search found 6797 matches

by DSguru2B
Thu Jun 22, 2006 7:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Connection to Pervasive database
Replies: 4
Views: 1189

I think you need to get in touch with Ascential support. There are other connectors available. Some unix based apps too. But never got a chance to work with it. Your best bet, try getting in touch with support.
by DSguru2B
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

parag.s.27 wrote:Yes you can do it in a single job......
just create 3 files with header, details and footer....

and then use Link collector having proper link execution order...


I dont think that would work, unless the "details" has a single record.
by DSguru2B
Thu Jun 22, 2006 7:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Failure Notification on Mobile
Replies: 7
Views: 1380

If you can send an email to your mobile from your favourite mailing giants, then you definately can send it via DSSendMail() or the notification activity in a job sequence.
by DSguru2B
Thu Jun 22, 2006 7:03 am
Forum: Site/Forum
Topic: ToolXchange?
Replies: 4
Views: 2203

Naa, i dont think youve missed anything. Still needs to get here. ToolXchange would really be nice :)
by DSguru2B
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 ...
by DSguru2B
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

Jules agrees with Craig. :wink:
by DSguru2B
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

Kim. You rule. Thank you so much for sharing these jewels with us. :P
by DSguru2B
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.
by DSguru2B
Thu Jun 22, 2006 6:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: sequence number
Replies: 12
Views: 3854

Yes it will be. Just pulling your leg sud :twisted:
by DSguru2B
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

Hijacking is not permitted :evil:
Ops, that was a little harsh, just pulling your leg :wink:
Try browsing for the file server from within the sequential file stage. If the server is visible, then you can.
by DSguru2B
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 ...
by DSguru2B
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...
by DSguru2B
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
by DSguru2B
Wed Jun 21, 2006 9:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance in Extraction
Replies: 12
Views: 2670

if no function is performed on user defined SQL, why use it. Simple just use the generated sql and then see the difference in performance.
by DSguru2B
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...