Search found 42189 matches

by chulett
Mon Aug 25, 2008 12:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with Update using Ora Stage and Insert using SQLLDR
Replies: 11
Views: 3443

Tried to explain - it's not a problem with your job. You ran afoul of another process, someone or something else working in the table at the same time you are and locking you out from making your changes. Work with your DBA when it happens again, they should be able to tell you where the lock is com...
by chulett
Mon Aug 25, 2008 11:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Impact / Usage Analysis
Replies: 3
Views: 1569

The Usage Analysis option is only as good as your developers are disciplined. Metadata must have been stored for all tables involved and that metadata used in the job so that the two have been associated in the repository. Chuck Smith has a utility at his website to find information like you are req...
by chulett
Mon Aug 25, 2008 11:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: insert a date field with ODBC Enterprise stage
Replies: 18
Views: 6375

Why not use the Oracle stage for Oracle then? In other words, why screw with ODBC?

What happens if you make your field a varchar in the job and match the NLS_DATE format of the target database? If you don't know what that is, ask your DBA, they'll be able to tell you how it is set.
by chulett
Mon Aug 25, 2008 10:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with Update using Ora Stage and Insert using SQLLDR
Replies: 11
Views: 3443

No, that's not how it works. That option does not mean "wait for the job to finish before running the subroutine" it means "do not run this subroutine if the job does not complete successfully". It always waits for all activity on the canvas to complete before anything 'after job' runs. Something el...
by chulett
Mon Aug 25, 2008 9:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with Update using Ora Stage and Insert using SQLLDR
Replies: 11
Views: 3443

And apparently missed telling us this was only a problem when the job itself failed before you got to the after-job subroutine if that's all it took to 'fix' it. :wink:
by chulett
Mon Aug 25, 2008 9:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: insert a date field with ODBC Enterprise stage
Replies: 18
Views: 6375

Dude - people are trying to help you but you are making it difficult by not providing enough information. And bottom line is you need to learn how to help yourself, or at least help us help you. You haven't mentioned the datatype of the Oracle DATE field in the job. You haven't mentioned the version...
by chulett
Mon Aug 25, 2008 7:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: command to stop logs generation in UNIX server?
Replies: 8
Views: 2260

Set the Auto Purge that suits each job - X number of runs or X number of days. Do this from the Director. As noted, the Administrator can set the defaults for the Project but that only affects jobs created after the default is in place.
by chulett
Mon Aug 25, 2008 7:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to get previous timestamp field
Replies: 4
Views: 1227

Sounds like you need to create a job to capture this 'lst_updt' and stash it somewhere like USERSTATUS. Then use a Sequence job to run the two Server jobs and pass it as a Job Parameter to the second job. Use the job parameter in the constraint.
by chulett
Mon Aug 25, 2008 7:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Warning while running Validate and Load job
Replies: 2
Views: 856

Or don't use the 'combo' actions. Split your input stream into discrete insert and update actions.
by chulett
Mon Aug 25, 2008 7:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Parse question
Replies: 6
Views: 1796

The 'derivation' in the Pivot stage just becomes a comma delimited list of the column names to pivot, as noted in the documentation.
by chulett
Mon Aug 25, 2008 7:17 am
Forum: General
Topic: Invocation Id not being always set
Replies: 9
Views: 3713

What does "doesn't always seem to set correctly" mean? It runs without an Invocation ID? Runs with a different one? :?
by chulett
Mon Aug 25, 2008 7:09 am
Forum: General
Topic: Hi
Replies: 2
Views: 1110

And you need to use meaningful subject lines, please.
by chulett
Sun Aug 24, 2008 2:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Conversion warning
Replies: 2
Views: 1809

Search for your actual error message with the bits back in you took out, or perhaps just "Implicit conversion". You'll find conversations on the Parallel Aggregator's appetite for dfloats and what you need to do about it.

For example:

http://www.dsxchange.com/viewtopic.php?t=121324
by chulett
Sun Aug 24, 2008 9:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Parse question
Replies: 6
Views: 1796

Pivot pivots, you need to parse. If you know the max # of fields, parse out that single field to the max, pivot and then filter out any nulls. No counting required.