Search found 42189 matches

by chulett
Thu Aug 04, 2005 6:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage returns fake return code
Replies: 18
Views: 6528

Please do us all a favor and edit your post - there's a button to allow you to do that. I'm assuming your original code is properly indented - wrap all of it in Code tags so that it displays properly here as well. Just makes it simpler all around. Also, are there job parameters or arguments involved...
by chulett
Wed Aug 03, 2005 7:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ftp command port failed
Replies: 3
Views: 1452

Bump up the Tracing level in the FTP stage to something other than zero so you can get more information about the problem.

Two things: There are two places in the stage to do this. The values are additive - for example, to turn on 1 and 3 set the value to 4.
by chulett
Wed Aug 03, 2005 7:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using sqlldr command
Replies: 2
Views: 791

Now you need a little script or batch file to do the actual call to sqlldr. Have a chat with your DBA if you've never worked with it before, they can walk you through the syntax and best practices. Once you've got it working outside of DataStage, then you can add a call to the batch into the appropr...
by chulett
Wed Aug 03, 2005 7:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: odbc table definition import problem
Replies: 7
Views: 1235

:? You have yet to mention the actual error you are getting.
by chulett
Wed Aug 03, 2005 7:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: shared container promotion and jobs dependant on container
Replies: 6
Views: 1999

And the read only issue in our production system can be worked around using the multiple job compile Don't believe so. From what I recall, you'll go through all the motions and then every compile will fail because the jobs are read only. You need to repromote them. All. A question about the "Get De...
by chulett
Tue Aug 02, 2005 8:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: shared container promotion and jobs dependant on container
Replies: 6
Views: 1999

That works fine in your development project but can't be done outside of it if you are taking advantage of 'Read Only' jobs when you promote. The promotion process does recompile all jobs being promoted, so if you find yourself in the position of changing a shared container (re)promote all of the jo...
by chulett
Tue Aug 02, 2005 3:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Retrieving the ascii number for characters
Replies: 2
Views: 701

Seq() is the inverse of Char().
by chulett
Tue Aug 02, 2005 11:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file with 2 key cloumns
Replies: 2
Views: 653

You can have as many as you like.... within reason. :wink:
by chulett
Mon Aug 01, 2005 5:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to stop the Job at once
Replies: 13
Views: 5696

Have your DBA kill the Oracle processes.
by chulett
Mon Aug 01, 2005 1:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Software for DSX viewing
Replies: 1
Views: 531

You are probably thinking of this - the DataStage Shell Integration Utility over on ADN. I thought it was cool for a moment or two, but the problems that I had with it far outweighed any utility I got from it, so it was uninstalled fairly quickly.
by chulett
Mon Aug 01, 2005 12:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: De-encrypting parameters
Replies: 8
Views: 1994

Ogmios should be along soon to let us all know how easy it is to decrypt things in DataStage. :wink:
by chulett
Mon Aug 01, 2005 8:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequential File Clearing
Replies: 13
Views: 2478

You can delete the file. The first job will still create it, even when set to append.
by chulett
Mon Aug 01, 2005 7:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequential File Clearing
Replies: 13
Views: 2478

CLEAR.FILE is for hash files, not sequential files. People have mentioned that more than once here. You can either open it in a BASIC routine and then WEOFSEQ - Write an End-Of-File mark - to it which will 'clear' it - or simply delete the file. I almost hate to ask - why do you feel you need to 'c...
by chulett
Mon Aug 01, 2005 7:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Connection to Oracle DB from windows
Replies: 4
Views: 1396

As far as I know (not really all that familiar with Windows servers) you still need to supply all of the 'normal' connection information in the stage - SID, user, password. The difference between UNIX and Windows is the latter has no 'dsenv' file to tell it which Oracle client to use. I believe DS t...