Search found 42189 matches

by chulett
Fri Aug 29, 2008 9:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sqlcode is: -903 ORA-00903: invalid table name
Replies: 12
Views: 10086

Exactly - what changed? And as Ray would note, "nothing" is not the correct answer. And if you know it wasn't the job...
by chulett
Fri Aug 29, 2008 7:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Calling same share container multiple time in a same job
Replies: 3
Views: 1143

The simple answer is 'yes' as there's nothing about the shared container itself that precludes you from adding one multiple times to a job. It's all going to depend on what the container... contains.
by chulett
Fri Aug 29, 2008 7:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sqlcode is: -903 ORA-00903: invalid table name
Replies: 12
Views: 10086

".ETL_ERROR_FILE_STAGING" is indeed an invalid table name. Either ensure the owner schema is provided or get rid of the dot.
by chulett
Fri Aug 29, 2008 7:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence number issue
Replies: 2
Views: 1109

Re: Sequence number issue

I am wondering what could be the reason for this unique constraint violation. So are we, and it's not really a question we can answer for you other than to state what Ray did. The routine has no clue if some other process has already issued a given number or not, it just assures that it only hands ...
by chulett
Fri Aug 29, 2008 7:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSJE_REPERROR while executing the Datastage Jobs from the OS
Replies: 1
Views: 6997

Your shell script needs to prepare the environment was well as run jobs. You would do this by 'sourcing' the dsenv file: cd $DSHOME . ./dsenv The first line would need to change if $DSHOME isn't set in the 'cronacle' user's .profile. Not sure why 'sudo' would be involved unless that is a Cronacle re...
by chulett
Fri Aug 29, 2008 7:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to capture Rejected ODBC records
Replies: 5
Views: 1541

Resolved?
by chulett
Fri Aug 29, 2008 7:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: reset job from command prompt
Replies: 4
Views: 1539

Also note that 'reset' does not run, it just resets. You need to invoke dsjob twice if you want to 'reset then run' a job.
by chulett
Thu Aug 28, 2008 1:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stored Procedure Error
Replies: 6
Views: 2282

Ok. Please provide as much detail as you can about how you are using the stage... as a Source? Target? What does the SP do? Does it return data or just a status? Etc. etc. etc.
by chulett
Thu Aug 28, 2008 12:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to capture Rejected ODBC records
Replies: 5
Views: 1541

Just like you would for any other database - create a link from the transformer feeding the ODBC stage to a Sequential File. Then either mark it as a Reject link or use a constraint to get just what you want sent down it. An official Reject link will take any row that was not accepted by all preceed...
by chulett
Thu Aug 28, 2008 12:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stored Procedure Error
Replies: 6
Views: 2282

Not much information to go on. Let's start with this - what database? :?
by chulett
Thu Aug 28, 2008 10:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job getting Reset before running
Replies: 17
Views: 4183

The sytax is detailed in the Server Job Designer's Guide in the Command Line Interface chapter - have you looked there?
by chulett
Thu Aug 28, 2008 10:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job getting Reset before running
Replies: 17
Views: 4183

Set -warn to 0 if you want unlimited warnings. We use 5 but a single warning is considered a failure here. Don't forget the -wait or -jobstatus options as well. And you may want to sleep a few seconds between the two commands.
by chulett
Thu Aug 28, 2008 10:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Duplicated key records from reference link
Replies: 1
Views: 1146

The only way to get 'duplicates' from a Reference link is if the stage used to do it is ODBC or the UV stage. What you got?
by chulett
Thu Aug 28, 2008 10:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job getting Reset before running
Replies: 17
Views: 4183

Sure you can - with the Director. Regardless, doesn't change my advice.
by chulett
Thu Aug 28, 2008 9:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job getting Reset before running
Replies: 17
Views: 4183

Emulate a Job Activity stage - Reset if required then run. Leave off the second 'reset', you can do that manually if desired but the job will rerun without you having to do that.