Search found 42189 matches

by chulett
Sat Jul 15, 2006 7:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: handle exceptions and continue
Replies: 3
Views: 789

Exactly the same answers as you already got in your other post. :roll:
by chulett
Fri Jul 14, 2006 8:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Invocation ID
Replies: 21
Views: 3718

kumar_s wrote:By doing so, eventually lost a day.

Um... what is that supposed to mean? :?
by chulett
Fri Jul 14, 2006 8:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date comparision
Replies: 6
Views: 1174

Your IConv mask needs to match the input format of the date in question. There are ways to make it fairly flexible, but if you are going to spell it out, at least make sure they match! And it's square brackets, not parens. Since your one sample date shows as "2006-04-20" try this: Iconv(LK_EBCDI...
by chulett
Fri Jul 14, 2006 6:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date comparision
Replies: 6
Views: 1174

Exactly - one way or anther you need to get them both into the same 'format' before the lookup can be performed. Looks like the shortest approach would be to take the CFF date and use IConv to get it into 'internal' format... as long as those two formats matched for the same calendar date.
by chulett
Fri Jul 14, 2006 3:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Rollup Data
Replies: 11
Views: 2193

How did you guys manage this? Now we're all stuck inside Krazykoolrohit's world... help! :lol:
by chulett
Fri Jul 14, 2006 3:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Sequence question
Replies: 12
Views: 4062

The issue now is when i say that job2 should run after job1 unconditionally and job1 fails, i want the control to pass to job2. ofcourse i need the exceptional handler to work too for job1? If I'm understanding your need, you are out of luck - you can't have it both ways. Either you are handling jo...
by chulett
Fri Jul 14, 2006 3:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: surrogate key file SDKSequences file corrupt
Replies: 11
Views: 4316

The first time when it corrupted, I did manually correct the problem. Since it happened again, I want to know how it happened. Let us know what you find. You'd have to be more specific about the nature of the problem. Note that it is not 'corrupted' per se but 'out of sync' to me - and you'd need t...
by chulett
Fri Jul 14, 2006 2:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: surrogate key file SDKSequences file corrupt
Replies: 11
Views: 4316

Hashed files would not be in any 'export dsx', you'd need a filesystem level backup. Or you'll need to identify which records are incorrect and update them with their correct values.

The syntax to do so has been posted here multiple times, a search for SDKSequences should turn it up...
by chulett
Fri Jul 14, 2006 11:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: use the new value as job parameter for a loop
Replies: 15
Views: 5309

No pound/hash signs... and you need to qualify the counter with the name of the stage it comes from:

Code: Select all

Start_Loop_Stage_Name.$Counter
by chulett
Fri Jul 14, 2006 10:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help needed in scheduling script using crontab
Replies: 2
Views: 992

You are manually scheduling jobs into cron? Don't. Use Director which will build a proper crontab entry for you automagically.
by chulett
Fri Jul 14, 2006 10:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CRC Info
Replies: 14
Views: 4751

Apologies Michael, perhaps a bad choice of word. I wasn't sure how to qualify your frustration in the post and that was the word that came to mind. Hope everyone realizes what I meant.

Perhaps a small edit is in order...
by chulett
Fri Jul 14, 2006 10:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can Multiple people run the same DS Sequence Simultaneously?
Replies: 3
Views: 1008

Only if you've made them 'Multi-Instance' jobs and built them with that in mind.
by chulett
Fri Jul 14, 2006 7:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transforming a delimited file into a non delimited file
Replies: 10
Views: 1563

It really depends on what the OP needs. If the fields can be strung together willy-nilly, each piece picking up where the previous piece ends, then all this 'concatenation' advice is fine. If the fields need to be of a certain consistant size, starting and ending in consistant positions with no deli...
by chulett
Fri Jul 14, 2006 7:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transforming a delimited file into a non delimited file
Replies: 10
Views: 1563

A non delimited one field file, yes. A fixed width file, i am not too sure about that. If thats what the OP wants then he has to make sure that if a field is defined as length 10 and an incoming value has only 8 bytes, he needs to cat 2 extra spaces to it to make it a truely fixed width file. A lit...
by chulett
Fri Jul 14, 2006 7:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Runnig a script in datastage
Replies: 17
Views: 4144

Then put spaces where you want spaces and colons where you want colons. How hard is this to figure out? :?