Search found 42189 matches

by chulett
Tue Nov 24, 2009 6:30 am
Forum: General
Topic: Field with 'delim=end' did not consume entire input
Replies: 20
Views: 18917

Let's try the hex dump again. Unfortunately, Ray got exactly what he asked for, but what we really need are a sample of the results of this: od -hc filename - the 'h' gets us the 'hex' part along with the 'c'haracter information. :wink:
by chulett
Tue Nov 24, 2009 6:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to resolove this issue.
Replies: 5
Views: 2052

Requests for details are usually fulfilled by reading documentation. And posting a single error from your log without any supporting detail is not any way to get help, how can we? For example... Are you able to connect via the TE stage now? If so, what changed? What other errors/warnings were logged...
by chulett
Tue Nov 24, 2009 6:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SDKSequences and D_SDKSequences
Replies: 4
Views: 2337

Depends on what you consider necessary. If you don't, you'll get that warning once in each project when the file is created. To avoid it, 'Test' the routine once from the Manager/Designer before any job runs that uses it.
by chulett
Mon Nov 23, 2009 5:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sqlcode:-1
Replies: 15
Views: 18856

Right. As you've said, a timestamp is a timestamp so if it is formatted correctly for an insert it should be formatted correctly for an update as well. As to whether the stage is generating the correct SQL or not, I'd be surprised if it wasn't but I've been surprised before. One way to confirm or de...
by chulett
Mon Nov 23, 2009 4:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading MQ Messages using DataStage
Replies: 15
Views: 19410

The link is in his sig.
by chulett
Mon Nov 23, 2009 3:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Setting up connecting to MySQL from Datastage
Replies: 1
Views: 1504

You'd have to purchase drivers for that AFAIK.
by chulett
Mon Nov 23, 2009 3:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML Stage - Heap allocation error
Replies: 7
Views: 3384

True, there's still an upper limit of around 400 or 500 MBs as noted, and it seems to vary by platform. You really should be getting many small XML files rather than a small number of really big ones. :wink:
by chulett
Mon Nov 23, 2009 3:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sqlcode:-1
Replies: 15
Views: 18856

Re: Update is failing with sqlcode:1403

No, you should not need to convert the timestamp in to a date (Oracle dates are effectively timestamps in that they hold date/time). I ask about it because Oracle requires a TO_DATE() function when performing an insert or an update to a DATE field unless the format you use matches the "NLS_DAT...
by chulett
Mon Nov 23, 2009 2:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML Stage - Heap allocation error
Replies: 7
Views: 3384

It's been mentioned here before, but one thing to keep in mind is the fact that it is an AIX-specific solution.
by chulett
Mon Nov 23, 2009 2:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sqlcode:-1
Replies: 15
Views: 18856

What you first tried would be the proper syntax: TO_DATE(ORCHESTRATE.STRT_DT_TM,'yyyy-mm-dd hh24:mi:ss')) However, your error implies that your timestamp is not in the format noted in the mask, which is probably also why your update is not working. I'm curious... can you peek out the actual value of...
by chulett
Mon Nov 23, 2009 12:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Enterprise stage not inserting records
Replies: 17
Views: 3906

Understand that the question was regarding Oracle log files, not the job's log. But yes, in general, issues like that would be recorded in the job's log but not for a combo action like this.
by chulett
Mon Nov 23, 2009 12:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Enterprise stage not inserting records
Replies: 17
Views: 3906

Regardless of platform, any log files would be in the scratch space defined in your config file. However, only the load option (which leverages sqlldr) creates log files, insert/update does not.
by chulett
Mon Nov 23, 2009 11:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Enterprise stage not inserting records
Replies: 17
Views: 3906

Only sqlldr creates log files.
by chulett
Mon Nov 23, 2009 10:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Enterprise stage not inserting records
Replies: 17
Views: 3906

They really don't have any updates to perform. As noted, set Upsert Mode to User-defined Update Only and use an insert statement in the Update SQL field.
by chulett
Mon Nov 23, 2009 10:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Load Problem
Replies: 5
Views: 2406

Not really, you need to make sure index maintenance is enabled and that you don't have duplicate values in unique indexes.