Search found 42189 matches

by chulett
Tue Jul 14, 2009 10:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: job activities in a sequence being invoked AFTER DELAY
Replies: 7
Views: 2833

Yes, definitely. The job may technically finish but could be writing records to their logs for all that time. Simple enough to check - purge them and let us know.
by chulett
Tue Jul 14, 2009 8:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading *.dbf files
Replies: 1
Views: 897

You would use the ODBC stage. Other than that it should be a fairly standard ODBC configuration that's needed, but to be honest I've never set one of this type up.
by chulett
Tue Jul 14, 2009 8:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: job activities in a sequence being invoked AFTER DELAY
Replies: 7
Views: 2833

That makes no sense. Are you sure there's nothing else between the two or a before/after routine that is skewing the results?
by chulett
Tue Jul 14, 2009 8:33 am
Forum: General
Topic: Calling Datastage from windows bat file
Replies: 7
Views: 2414

Yes, success. With the "-jobstatus" option you are asking it to return ds status codes:

1 = Finished OK
2 = Finished (See log)
3 = Aborted

Etc etc. All values have been posted here and you can also find them in the dsapi.h file under the DSEngine directory.
by chulett
Tue Jul 14, 2009 8:04 am
Forum: General
Topic: Metadata Tables
Replies: 2
Views: 1401

There is no procedure and this is the gamble you take when working 'under the covers' like that, any new version can break it. Time to change your old job, it seems. What exactly are you getting from DS_METADATA and what exactly are you doing with it? Perhaps we can come up with a more proper way to...
by chulett
Tue Jul 14, 2009 7:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Controller problem:
Replies: 5
Views: 2517

So go delete yours and then they can delete theirs.
by chulett
Tue Jul 14, 2009 7:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job controle not running in V8
Replies: 8
Views: 1880

Sure we're not talking about the "KBA Job Control Utilities"?
by chulett
Mon Jul 13, 2009 5:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: File finished FTP
Replies: 4
Views: 1591

True, that 'semaphore file' approach is the best way if you can get your source to agree to do this for you. Otherwise you get to play the silly games we've talked about or just cross your fingers and hope it's all there and that your short read will fail the job. :wink:
by chulett
Mon Jul 13, 2009 3:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: -9999 DSJE_DSJOB_ERROR
Replies: 10
Views: 3773

without doubledouble quotes in definition echo command is not giving correct result. What the heck does "not giving correct result" mean? What result does it get you? :? And yes, DataStage is notorious for stripping quotes from string parameters so you need to escape them in some fashion ...
by chulett
Mon Jul 13, 2009 1:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: File finished FTP
Replies: 4
Views: 1591

On Windows? Not sure. There are UNIX utilities like "fuser" that let you know if a file is "in use" or not, with the assumption there being that in use means still transferring - perhaps there are Windows equivalents? Old School: looping check of the file size. Check size, wait, ...
by chulett
Mon Jul 13, 2009 12:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: -9999 DSJE_DSJOB_ERROR
Replies: 10
Views: 3773

OK, then you just need to get the syntax right:

-param A=${A}

No spaces around the equal sign, btw.
by chulett
Mon Jul 13, 2009 11:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: -9999 DSJE_DSJOB_ERROR
Replies: 10
Views: 3773

$ is for environment variables, sounds like you should just be passing in the string value itself.

-param A='xxxxxxxx'
by chulett
Mon Jul 13, 2009 8:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: handling rm-cobol index files
Replies: 3
Views: 1851

I'd check with your official support vendor to confirm what your options are, and perhaps also poke around on the Data Direct website which is one source of ODBC drivers.
by chulett
Mon Jul 13, 2009 6:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Metadata Mismatch
Replies: 6
Views: 1894

Why not change them to... Numeric? :?
by chulett
Mon Jul 13, 2009 6:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: handling rm-cobol index files
Replies: 3
Views: 1851

As far as I know, you'd need to purchase either an ODBC driver or an IWay Adapter to handle those. Or get your COBOL people to dump them for you.