Search found 42189 matches

by chulett
Wed Mar 26, 2008 11:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Bulkloader Issue.
Replies: 1
Views: 1061

Talk to your DBA about "ORA-00054: resource busy and acquire with NOWAIT specified". The table is in use and so can't be bulk loaded.
by chulett
Wed Mar 26, 2008 9:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Character not inserting into Oracle DB.
Replies: 14
Views: 5513

That one remains... unresolved... at the moment. :cry:
by chulett
Wed Mar 26, 2008 9:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: FTP Plug-In Stage - File Rename after FTP with stage?
Replies: 3
Views: 1081

You'd have to have been granted telnet access to that server, which is separate from ftp access... do you have that?
by chulett
Wed Mar 26, 2008 8:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Design question to fail jobs
Replies: 1
Views: 942

We created a routine that is called in a stage variable derivation when something fails that should never fail, typically a reference lookup. It calls 'UtilityAbortToLog' from what I recall, which allows us to not only abort the job but also record in the log why we are aborting it.
by chulett
Wed Mar 26, 2008 8:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Character not inserting into Oracle DB.
Replies: 14
Views: 5513

Glad you got it sorted out. Let's see... 1. Because NLS_LANG is a combination of several values. 2. Not entirely sure. No, it doesn't get set to the same value as NLS_LANG, it has its own set of values. Type 'locales' from the command line to see how all of them are set. Or maybe it's 'locale'... I ...
by chulett
Wed Mar 26, 2008 7:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle commit interval
Replies: 11
Views: 5878

You must have the parameter setup as an Integer with that error... perhaps just change it to a String? :?
by chulett
Wed Mar 26, 2008 7:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error using Oracle Sequencer
Replies: 2
Views: 1174

It's not complaining about your Sequence object, it's saying the "TEST_ID" field does not exist in your "TEST_SEQ" table.
by chulett
Wed Mar 26, 2008 7:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: PL/1 file structure
Replies: 3
Views: 992

The 'dot' or the 'V' are legal... not both.
by chulett
Wed Mar 26, 2008 7:22 am
Forum: General
Topic: Multiple output files while using XML OUTPUT stage
Replies: 4
Views: 1370

You must have specified a Trigger Column which tells it to do that each time the value in that column changes. Don't do that. :wink:
by chulett
Tue Mar 25, 2008 10:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Restartability options from crontab
Replies: 7
Views: 2088

Yes - which will still require a wrapper script to restart 'automatically' from cron. The job sequence itself will need to handle where exactly to restart from.
by chulett
Tue Mar 25, 2008 9:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Restartability options from crontab
Replies: 7
Views: 2088

Right... but... my point isn't about individual jobs only. How can cron 'restart' anything on failure? It can't, hence the need for a script. The point as to whether the script is running one job or a sequence of jobs is moot.
by chulett
Tue Mar 25, 2008 9:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: job aborts with sql loader error
Replies: 2
Views: 895

Re: job aborts with sql loader error

just4u_sharath wrote:can anybody help with this error pls

In other words, no. At least not with a lot more information.
by chulett
Tue Mar 25, 2008 9:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Restartability options from crontab
Replies: 7
Views: 2088

Restartablily could be handled only by Datastage. Not really. Whatever outermost job controls a series of jobs cannot restart itself. You will need to write a wrapper script, something that is scheduled via cron and which starts the main job. Once the job completes, the script would need to check t...