Search found 42189 matches

by chulett
Tue Nov 20, 2012 11:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Removing double quotes from a flat file
Replies: 5
Views: 2843

Can't you simply specify that strings are doubled-quoted in the stage and let them be handled automatically? It won't care if they're not there and will remove them when they are.
by chulett
Tue Nov 20, 2012 8:28 am
Forum: General
Topic: Issuse during DS 8.7 installation
Replies: 2
Views: 1309

I guess so, just didn't seem like one of those at first read. Does more so on the second. :wink: In the realm of "enough background information" I would like to see this expanded with specifics of the change needed: You should modify the user profile so it does not generate errors when a p...
by chulett
Tue Nov 20, 2012 8:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job with SCD stage behaving strange. Any ideas?
Replies: 18
Views: 4553

I don't think this is 'obviously' anything yet. As to your questions:

1) In a Type 2 load? None.
2) No.
by chulett
Tue Nov 20, 2012 8:08 am
Forum: General
Topic: Issuse during DS 8.7 installation
Replies: 2
Views: 1309

Why is this marked as Resolved? Did you figure out your issue?
by chulett
Mon Nov 19, 2012 11:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: New Line in Date Field
Replies: 10
Views: 2424

Seriously? So not a new line character at all but literally two characters - a slash followed by an N. And if that's the case there's absolutely no need for the Convert() as a simple if-then-else would suffice. :?
by chulett
Mon Nov 19, 2012 5:26 pm
Forum: General
Topic: can we use job parameters in email notification body?
Replies: 2
Views: 1225

This question has been asked and answered quite a bit here, an exact search for "email body" will answer your question.
by chulett
Mon Nov 19, 2012 2:02 pm
Forum: General
Topic: Unix shell script to call datastage job error
Replies: 5
Views: 4277

You didn't answer my question but if you use -jobstatus then you are on the right track as 1 = Finished OK, 2 = Finished with Warnings, 3 = Aborted, etc.
by chulett
Mon Nov 19, 2012 12:03 pm
Forum: General
Topic: Unix shell script to call datastage job error
Replies: 5
Views: 4277

Which dsjob option are you using in your script: -wait or -jobstatus? You should be using the latter if you want to differentiate between the status values a job can end in.
by chulett
Mon Nov 19, 2012 11:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Performance improvement for reading a file via FTP Plug-in
Replies: 8
Views: 2157

Could be, especially if there is a lot of "white space" in the file. You'd have to factor in the time to compress and then uncompress the file but certainly worth a shot.
by chulett
Mon Nov 19, 2012 10:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to get every Nth row
Replies: 4
Views: 1121

Off you go to your own version of this topic..
by chulett
Mon Nov 19, 2012 8:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage job ran for 11 hours,,, please help
Replies: 12
Views: 6910

ArndW wrote:I use the term "dummy sort" as well for sort stages that specify "don't sort, already sorted".
That's all I was trying to confirm.
by chulett
Mon Nov 19, 2012 7:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage job ran for 11 hours,,, please help
Replies: 12
Views: 6910

Please detail for us what "dummy Sort stages" mean in your job. As to the Job Monitor, realize that rows/second are over the entire run of the job so anything that starts "late" starts in a deep hole, rate-wise.
by chulett
Mon Nov 19, 2012 7:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: New line character
Replies: 7
Views: 1763

Of course, there are other games you can play. You could build and write out a single record much as posted but rather than the pipes separate the three segments with a line feed. You'll write out one record but anything reading it will read three: svLF = CHAR(10) Output = 'Total_Data_Count,' : Col1...
by chulett
Mon Nov 19, 2012 7:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Creation XML file with Header ,Detail , Trailer
Replies: 12
Views: 6292

BIuser wrote:Please confirm if this approach is right ?
Is the output what you need it to be? That would go a long way towards saying your approach was fine.