Search found 42189 matches

by chulett
Mon Dec 30, 2013 3:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Insert/Update column value with special char #
Replies: 5
Views: 2093

Which is it - "#XYZ" or "#XYZ#"? Asking since you posted both variations. If it is the latter then I'd guess it is thinking it is a job parameter that it cannot find... but that would leave it intact rather than null. :?
by chulett
Mon Dec 30, 2013 9:41 am
Forum: General
Topic: crontab not working as expected
Replies: 5
Views: 1423

Shouldn't but you never know... especially since there are many flavors of Linux. May be a bug in your distro/version, hence the advice to check with your SysAdmin.
by chulett
Mon Dec 30, 2013 9:14 am
Forum: General
Topic: crontab not working as expected
Replies: 5
Views: 1423

Syntax looks fine to me. What O/S? Have you talked to your SysAdmin? Not really a DataStage question after all.
by chulett
Mon Dec 30, 2013 8:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Bad or Wrong data type
Replies: 8
Views: 7310

DataStage is a client, it interfaces with Oracle (or any other database for that matter) the same as any other client tool. If that database doesn't support something or communicate something back to the client, there's nothing the client can do about it.
by chulett
Mon Dec 30, 2013 8:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job getting failed for 1 node
Replies: 7
Views: 2379

Did you try doing an exact search for "code 139"? There are 46 other posts on this subject, did none of them help?
by chulett
Mon Dec 30, 2013 8:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Processing multiple files
Replies: 1
Views: 1712

Read your documentation on Runtime Column Propagation. It can be used with the Sequential File stage along with schema files to define the metadata.
by chulett
Sun Dec 29, 2013 11:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Bad or Wrong data type
Replies: 8
Views: 7310

ps. Oracle will never tell you which record / column / value is throwing the error - you need to find it. Sometimes you can find them by sorting the VARCHAR2 columns descending, non-numeric values will appear first... depending on their position in the string, of course. You could also play with the...
by chulett
Sat Dec 28, 2013 8:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Bad or Wrong data type
Replies: 8
Views: 7310

Well... one way would be to do the conversion inside the job. Part of that conversion could be an IsValid check so that you can easily identify and handle any values that will not convert properly.
by chulett
Fri Dec 27, 2013 3:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Bad or Wrong data type
Replies: 8
Views: 7310

ORA-01722 is an "invalid number" error. Depending on what your source SQL looks like, Oracle can throw that error even if your metadata for the result is correct. Any chance you are joining tables in the connectors and doing an implicit cast of types in the join? Just wanted to rule that o...
by chulett
Fri Dec 27, 2013 3:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: split one row in more row
Replies: 6
Views: 2855

Luca - what 8.x version are you running? Asking because it would need to be at least 8.5 for 'transformer looping' to be an option for you.
by chulett
Fri Dec 27, 2013 10:39 am
Forum: General
Topic: Datastage job on prod is changing status
Replies: 10
Views: 3339

Have you involved your official support provider yet?
by chulett
Fri Dec 27, 2013 10:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with hyphens in DB2 connector stage input SQL
Replies: 2
Views: 1197

What version of DataStage? Have you checked to see if there are any patches / fixpacks that address this issue?
by chulett
Fri Dec 27, 2013 10:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Webservice call for larger volume records
Replies: 5
Views: 1663

That would depend entirely on the author of the service.
by chulett
Fri Dec 27, 2013 9:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Playing with Date-type data
Replies: 4
Views: 1360

Clarify for us the data type of the target - is it specifically a Timestamp or is it another string? For the latter use TimestampToString after the initial conversion and use '%(HH,u)' to get it back to a string with the time in 12 hour format with an upper case AM/PM.
by chulett
Fri Dec 27, 2013 7:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Playing with Date-type data
Replies: 4
Views: 1360

StringToTimestamp works with any delimiter. You specify it in the format string you pass to the function.