Search found 42189 matches

by chulett
Tue Aug 03, 2010 6:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Setting Parallel in Oracle Bulk Load
Replies: 3
Views: 1354

That should do it, I would think. What does the sqlldr .log file say for the load, what options were in play when it ran?
by chulett
Tue Aug 03, 2010 6:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to fire an update query using datastage job?
Replies: 23
Views: 15187

Since generated SQL can't bind the same column twice, include it twice in your link (old and new values) then use user-defined SQL to do the actual update in the target stage.
by chulett
Mon Aug 02, 2010 10:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle turning a space into a null
Replies: 14
Views: 3265

Ok... so, here we are in the proper forum and I edited your original post to reflect the proper Job Type. That being said, try adding APT_ORACLE_PRESERVE_BLANKS to your job and setting it to True, see if that helps.
by chulett
Mon Aug 02, 2010 9:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Convert CSV to Pipe delimited
Replies: 3
Views: 3739

Right, simply read it in with one delimiter and write it back out with the other. Have you tried this? What issues are you having?
by chulett
Mon Aug 02, 2010 9:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: surrogate key logic not working on 4 node
Replies: 9
Views: 3398

What exactly do you want it to do when it runs on multiple nodes? Typically you want the 'round robin' effect that anbu mentioned, i.e.

Node 1: 1,5,9,13
Node 2: 2,6,10,14
Node 3: 3,7,11,15
Node 4: 4,8,12,16

However, it seems like you want something else? :?
by chulett
Mon Aug 02, 2010 5:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracler stages not working after upgrade to 8.1
Replies: 9
Views: 4293

Then if you've done this combination before and it works but things are not working on this particular server then it seems like we're back to a configuration problem, most likely in your "shared library" environment variable I would think. As Arnd noted, I would triple-check your dsenv fi...
by chulett
Mon Aug 02, 2010 5:55 pm
Forum: General
Topic: Too much space in DB XMETA db2
Replies: 20
Views: 11246

Not to side-track things but neither does recompiling a job, Server or otherwise (regardless of where the logs are stored), so not quite sure what jdmiceli was thinking of. :?
by chulett
Mon Aug 02, 2010 5:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Determine which jobs have failed without using Director
Replies: 7
Views: 4204

Yah, this should be pretty simple to set up and operate, most of us have something like this in our toolkits, I'd wager. :wink: One word of advice: when you do this make sure you filter out the name of the job that is doing the actually checking and don't attempt to interogate it as doing things lik...
by chulett
Mon Aug 02, 2010 2:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Pick a particular duplicate record
Replies: 24
Views: 6290

If '0001' is your lowest possible value for that field, sort ascending on it and always pick the first duplicate as noted earlier.
by chulett
Mon Aug 02, 2010 2:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracler stages not working after upgrade to 8.1
Replies: 9
Views: 4293

I have no idea what is what anymore, 64 v. 32, however if everything is 64bit now on that platform then you should be fine leveraging the 64bit Oracle drivers.
by chulett
Mon Aug 02, 2010 2:46 pm
Forum: General
Topic: FTP through Datastage
Replies: 1
Views: 2447

If this 'particular FTP location' is somewhere on the DataStage server, then you can handle that with proper pathing in the output stage. Otherwise, you'll need to create it somewhere and then transfer it in some sort of 'after job' activity, which could be a script that leverages FTP or scp or some...
by chulett
Mon Aug 02, 2010 2:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracler stages not working after upgrade to 8.1
Replies: 9
Views: 4293

Your Oracle "bit-ness" doesn't matter, what matters is if DataStage itself is 32bit or 64bit, you'll need to match your drivers to that.
by chulett
Mon Aug 02, 2010 2:12 pm
Forum: General
Topic: Multi client
Replies: 1
Views: 877

Only one client "works" or is active at any given time and the MCM is used to switch from one to the other.
by chulett
Mon Aug 02, 2010 12:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle turning a space into a null
Replies: 14
Views: 3265

Oracle will do that by default and there is a property called "preserve blanks" off the top of my head that will stop it from happening. What stage are you writing to Oracle with and is this a Server or PX job?

ps. I edited your subject to be more meaningful.