Search found 42189 matches

by chulett
Mon Jun 07, 2010 1:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with Upsert option
Replies: 23
Views: 11656

Not much to say except that means every row is committed individually which is about the slowest way to load data on the planet. Involve your DBA, have them monitor the database, particularly the undo/rollback usage and space using the old values. See if that sheds any light on this.
by chulett
Mon Jun 07, 2010 1:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Password Encryption.
Replies: 27
Views: 18769

Ah... tend to forget about them darn things, not having had much of a chance to play with them anywhere. :(
by chulett
Mon Jun 07, 2010 1:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Print '+' Character in Concatenated string
Replies: 19
Views: 3455

I was wondering much the same thing, how the expression was being evaluated... perhaps the '1' simply means 'true' here. I don't think we're getting the whole story.
by chulett
Mon Jun 07, 2010 9:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with Upsert option
Replies: 23
Views: 11656

If you are certain that your bogus 'update' never fires, then it's time to involve your official support provider. Only other thing I could suggest would be to see if there is an updated Oracle client version available as I've seen things like this from Oracle bugs that (usually) get fixed in later ...
by chulett
Mon Jun 07, 2010 9:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Print '+' Character in Concatenated string
Replies: 19
Views: 3455

So... no matter the input, the output you get is always "1"? :?
by chulett
Mon Jun 07, 2010 8:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Print '+' Character in Concatenated string
Replies: 19
Views: 3455

Probably not long enough. :wink:

ps: your posted syntax is just fine.
by chulett
Mon Jun 07, 2010 8:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ERROR CODE -14 ( PATCH)
Replies: 8
Views: 2903

How about... more than one? :wink: There's no way for anyone to answer that, too many variables in both the hardware and exactly what your Sequence and the jobs it runs do for a cogent answer. You have to do something like they did at Los Alamos when they tickled the dragon's tail - ramp things up u...
by chulett
Mon Jun 07, 2010 7:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Password Encryption.
Replies: 27
Views: 18769

You would have build something to first encrypt them and then job control to decrypt them on the fly when it sets the value and runs the job. None of this will help with running from the GUI and everything would be in clear text in the job's log. You need to rethink this 'requirement', find some oth...
by chulett
Mon Jun 07, 2010 7:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ERROR CODE -14 ( PATCH)
Replies: 8
Views: 2903

Grep for processes, something along the lines of:

Code: Select all

ps -ef |grep phantom | grep -v grep
Should get you started. As to the general 'busy' question, work with your SysAdmin for that.
by chulett
Mon Jun 07, 2010 6:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ERROR CODE -14 ( PATCH)
Replies: 8
Views: 2903

There is no 'exact' and not much to help to be given other than 'run fewer jobs at the same time'. Typically this means start rather than run as it is a startup issue. On a 'shared server' you'd have to do this at an enterprise level, working with the other teams to minimize the problem. How busy is...
by chulett
Mon Jun 07, 2010 6:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with Upsert option
Replies: 23
Views: 11656

Updates based on non-indexed fields will do full table scans, so it is always in your best interest to avoid that - especially for anything with the word 'huge' associated with it. Me, I would never design a job using Upsert in a situation like that unless (maybe) you used 'Insert then Update' knowi...
by chulett
Mon Jun 07, 2010 6:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Is it possible to install TPT plugin to DX 8.01?
Replies: 9
Views: 2948

asorrell wrote:I do know of one site that has TPT working with 8.0.1.
According to Andy, it *is* available for your version. Check with your official support provider if you don't seem to have it.
by chulett
Mon Jun 07, 2010 6:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Is it possible to install TPT plugin to DX 8.01?
Replies: 9
Views: 2948

I know that Informatica has plugin for previous versions. I wonder that it is possible to do the same in datastage previous versions. I have no idea why what Informatica has or what versions they have it for would have any bearing here. And I wonder why you wouldn't just upgrade? Far simpler than a...
by chulett
Mon Jun 07, 2010 6:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with Upsert option
Replies: 23
Views: 11656

Have we just gone from one table to 'issues with all the tables'? And are we really talking about 10g rather than 11g? :?
by chulett
Mon Jun 07, 2010 6:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ERROR CODE -14 ( PATCH)
Replies: 8
Views: 2903

Never found any need for a patch, this is easy enough to never trigger by proper job management. And by 'easy enough', I mean I never had to go out of my way or worry about this in any way in spite of typically needing to run many (many) hundreds of jobs daily. YMMV of course, but that's been my exp...