Search found 42189 matches

by chulett
Sun Apr 22, 2007 10:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error while trying to import tables-dsn names
Replies: 14
Views: 4946

Sorry, that's a new one on me and a search of the forums doesn't reveal anyone posting that message before. Suggest you contact your official Support provider.
by chulett
Sun Apr 22, 2007 8:54 pm
Forum: General
Topic: Adding a column during concatenation
Replies: 9
Views: 2748

How about using the wildcard as stdin for sed (so they work one at a time) and append-redirecting the output into your file? Err... meaning... this? sed -e 's/$/|M' *.xxx >> fileout I'll give it a shot. Edited to add: WTH? The substitution syntax that worked fine in the other form won't parse in th...
by chulett
Sun Apr 22, 2007 8:49 pm
Forum: General
Topic: Adding a column during concatenation
Replies: 9
Views: 2748

kcbland wrote:Syncsort available?

Sadly, no. :cry:
by chulett
Sun Apr 22, 2007 8:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Decrease in Load Performance - Unsure of Cause
Replies: 6
Views: 1272

The word 'load' is used interchangeably at my workplace for inserts and updates. And the word 'bulk' is being used incorrectly. A 'bulk' load implies one of the stages that leverage sqlldr and therefor have some form of 'bulk' in their name. You've just got plain ol' DML updates where I guess bulk ...
by chulett
Sun Apr 22, 2007 10:49 am
Forum: General
Topic: Adding a column during concatenation
Replies: 9
Views: 2748

This does work but adds some overhead. Cat'ing 2.6M records went from 23 seconds to 1 minute 23 seconds. I can live with that but still curious if there is something less impactive that could be done.
by chulett
Sun Apr 22, 2007 10:33 am
Forum: General
Topic: Adding a column during concatenation
Replies: 9
Views: 2748

Thanks - running some timing tests. I can pipe cats through sed:

Code: Select all

cat *.xxx | sed -e 's/$/|M' > fileout

Two birds, one stone. :D
by chulett
Sun Apr 22, 2007 6:43 am
Forum: General
Topic: Adding a column during concatenation
Replies: 9
Views: 2748

Adding a column during concatenation

Not really a DataStage question as I don't want a job solution, but a UNIX one. I have 16M records in 51 identical files that need to be concatenated together for processing. I'd like to add a single letter as a trailing pipe delimited column to each record during the process, if possible. I know wh...
by chulett
Sun Apr 22, 2007 6:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reg. mutex error
Replies: 1
Views: 921

'As early as possible' takes a phone call to your Support provider. These are all volunteer forums and people help when they can, if they can.

:idea: First line of defense would be a search of the forums for your error - you're not the first person who's ever seen a mutex error.
by chulett
Sun Apr 22, 2007 6:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Jobs Got Deleted
Replies: 6
Views: 1407

ivannavi wrote:I didn't write poop. I wrote s..t. Is this forums engine inteligent or what?

Nah, just a prude. If it was all that smart, it would have added your missing 'l' for ya. :wink: [/joke]

Ray - assembly language puns? Oi vay...
by chulett
Sun Apr 22, 2007 6:20 am
Forum: General
Topic: Find/Search Jobs in Datastage Designer
Replies: 3
Views: 5861

You know the job name but not where to find it? Use the Administrator:

Code: Select all

SELECT CATEGORY FROM DS_JOBS WHERE NAME = 'YourJobName';

You can also utilize the Filter Entries and uncheck the Show Categories option in the Director - in that order! Reverse the order once found. :wink:
by chulett
Sat Apr 21, 2007 4:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Running a server job in datastage PX
Replies: 4
Views: 1078

I sense a great disturbance in the Force... Does your last sentence mean that if someone upgrades to 8.x then all Server jobs will run with a 'performance penalty'?? Yes, no, maybe so? What if there is no 'parallel environment' per se, a situation where someone running XE with only Server jobs lice...
by chulett
Sat Apr 21, 2007 11:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to open hash file
Replies: 13
Views: 6100

Could very well be. The complete error should reveal all, at least to them. :wink:
by chulett
Sat Apr 21, 2007 11:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequencer Aborts Due to Error Code = -14
Replies: 23
Views: 11723

No. The timeout is specific to the job starting - not about how long it takes to start processing records once it has started.
by chulett
Sat Apr 21, 2007 8:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequential file problem
Replies: 4
Views: 939

Here is a techinque from Ken Bland that I've used to great effect. Nutshell: a single cached hashed file record with 'arrays' like you are using to do your range check via the Locate function. The explanation is a little long, but the basics are pretty easy to grasp. You could short-cut some of the...
by chulett
Sat Apr 21, 2007 8:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Running a server job in datastage PX
Replies: 4
Views: 1078

Nothing magical about the 'PX environment' - just run them. Sequence jobs can run either and there's no need to put them in a container in a PX job.