Search found 42189 matches

by chulett
Fri Dec 09, 2011 5:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Help need for this to avoid the Warning Messages
Replies: 6
Views: 3887

I'll wager that's just a typo in the header record from hand-typing the source data example.
by chulett
Fri Dec 09, 2011 9:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error while running an extract Job.
Replies: 5
Views: 1856

Then something else is incorrect and you'll need to track it down: you are connecting to the wrong 'instance' or your password or userid are incorrect.
by chulett
Fri Dec 09, 2011 7:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: StringToDecimal logic
Replies: 19
Views: 4613

And in case anyone is interested, there is a new FAQ available on this very subject thanks to Franklin.
by chulett
Fri Dec 09, 2011 7:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Pass SQL Query as Parameter Thru Unix Script
Replies: 12
Views: 13132

Developer9,

Please stop hijacking multiple posts with your issue. I'm locking this three year old post and you can continue the conversation in the appropropriate place: the post you created:

viewtopic.php?t=143583
by chulett
Fri Dec 09, 2011 7:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parameterize query SQL file
Replies: 4
Views: 4789

You cannot include parameters in the SQL File, that's one major drawback to that approach. You will need to build the file with the actual parameter value included in it rather than referenced in it.
by chulett
Fri Dec 09, 2011 7:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Convert value to Years
Replies: 5
Views: 1242

You need to decide where to round a fractional year up or down and then adjust the code accordingly.
by chulett
Fri Dec 09, 2011 7:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Server Job to Parallel Job
Replies: 6
Views: 1441

Which is why I said "no" was the short answer. They allegedly exist but are not publically available and as Ray noted, only available if you pay IBM to convert your jobs for you. Even so, their conversion software is only X% successul with X varying wildly, so there is always a final wetwa...
by chulett
Fri Dec 09, 2011 7:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Phantom 14763 Variable previously undefined. Zero length s
Replies: 9
Views: 2341

No way to know without seeing the actual code. Perhaps someone 'fixed' it in the other environment...
by chulett
Fri Dec 09, 2011 7:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle date question
Replies: 5
Views: 1304

That's not usually an option, so you typically either match that format or use TO_DATE() in your DML so that the default format is not an issue.

Rodre - what was your resolution? I don't see an issue with anything you posted, was it just a... select issue?
by chulett
Fri Dec 09, 2011 7:13 am
Forum: General
Topic: Sending Multiple Attachment from Notification Activity
Replies: 9
Views: 11407

I don't recall one that doesn't, it was just a matter of figuring out how it wanted them to look.
by chulett
Fri Dec 09, 2011 7:09 am
Forum: General
Topic: Oracle connector connectivity
Replies: 1
Views: 1918

I would guess they are not actually getting input correctly in the Job Activity stage. How did you set this up - did you create job parameters in the Sequence itself and then assign those parameters to the parameters in the stage or did you 'hard code' them there? Did you enter anything by hand in t...
by chulett
Thu Dec 08, 2011 9:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle date question
Replies: 5
Views: 1304

That's not the problem, an Oracle DATE field is actually a timestamp. Seems to me your time portion is not being successfully added to the date. What is the actual output of your OConv function?
by chulett
Thu Dec 08, 2011 7:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: capture the reject record based on column length
Replies: 20
Views: 7863

Really? Isn't that the whole point of that environment variable to pad short character fields? So reading a comma delimited file where the source data is shorter than the CHAR size noted, it should reject the record rather than simply pad it out to full size? :?
by chulett
Thu Dec 08, 2011 7:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Warning
Replies: 3
Views: 1486

An implicit conversion is one where the engine itself (rather than 'you' in the job) are performing the conversion. This as opposed to an explicit one. As noted, you are moving data from an unbound string to a bound one and thus it is warning you that it just might possibly truncate the data. You co...
by chulett
Thu Dec 08, 2011 7:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Server Job to Parallel Job
Replies: 6
Views: 1441

Short answer is there is no conversion tool. As to the how, you make sure you understand what the Server job is doing and rebuild it as an equivalent Parallel job. Now... I hope you're not at one of those shops who have just upgraded to the Enterprise Edition and suddenly think you have convert ever...