Search found 42189 matches

by chulett
Fri May 16, 2008 4:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: 00-000-00 Date problem
Replies: 10
Views: 2100

That's an Oracle 'type 12' which means DATE. If the field was null the function would return the word 'NULL' rather than those hex zeroes. I'm not really sure what to make of this one. :?
by chulett
Fri May 16, 2008 12:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: read txt from a job sequence
Replies: 17
Views: 6277

The Power of Search can help! Search for "ParamValue/Limitvalue is not appropriate" and all will be revealed. :wink:
by chulett
Fri May 16, 2008 12:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: constraint to " OTHERWISE" for a otherwise link in
Replies: 18
Views: 3451

In other words, with the exception of (apparently) being able to type the word 'OTHERWISE' in the constraint, it works exactly the same as a Server reject link. Positional, logging, the whole nine yeards.
by chulett
Fri May 16, 2008 11:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to remove unwanted space at one column
Replies: 16
Views: 5674

Isn't that just the placeholder for the sign the viewer adds?
by chulett
Fri May 16, 2008 11:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating EXCEL work book
Replies: 9
Views: 2086

That would be a job for Excel code, not an ETL tool.
by chulett
Fri May 16, 2008 10:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: constraint to " OTHERWISE" for a otherwise link in
Replies: 18
Views: 3451

Great, thanks for the clarification. Does it still function as the Server 'reject' does where it is positional, meaning it fires if the links above it haven't? Or is it a true 'otherwise' constraint?
by chulett
Fri May 16, 2008 9:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: constraint to " OTHERWISE" for a otherwise link in
Replies: 18
Views: 3451

ArndW wrote:No, only rows that don't go down any other links will go down an "Otherwise".

Is this something new in 8.x or PX? An 'otherwise' constraint? :?
by chulett
Fri May 16, 2008 9:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: constraint to " OTHERWISE" for a otherwise link in
Replies: 18
Views: 3451

Sorry, but for some silly reason I thought you meant an 'Otherwise' trigger in a Sequence job and were using the word 'constraint' in a more generic manner. Let's start over. There is no such thing as an 'OTHERWISE' constraint. An empty constraint means the link is not constrained and accepts all ro...
by chulett
Fri May 16, 2008 9:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: constraint to " OTHERWISE" for a otherwise link in
Replies: 18
Views: 3451

Catch all. It 'fires' only if none of the other triggers fire.
by chulett
Fri May 16, 2008 9:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: 00-000-00 Date problem
Replies: 10
Views: 2100

What happens if you dump that column? I'd be curious what's actually in there rather than what to_char pulls out. select item_pur_dt, quantity, dump(item_pur_dt,16) from <target_table_name> where item_id = 1 and item_seq_no = 2 That will give us the data type, length and hexidecimal contents...
by chulett
Fri May 16, 2008 6:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can't log into uvsh/dssh from unix
Replies: 10
Views: 4491

That would explain why it doesn't work. :wink:
by chulett
Fri May 16, 2008 6:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Parameter File
Replies: 5
Views: 1271

As Nike would say - Just do it. Use #spath#/filename or #spath#/#sfilename# if the filename is parameterised as well.
by chulett
Fri May 16, 2008 6:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date Conversion problem
Replies: 10
Views: 2244

Then you cannot store it in an Oracle DATE as they require a full date. If you literally just want to store 'MMYY' you'd need a CHAR or VARCHAR2 field for that, otherwise you will need to add a 'day' to the date before formatting it for Oracle. After that, people can choose not to extract the day wh...