Search found 42189 matches
- 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
- 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...
- Sun Apr 22, 2007 8:49 pm
- Forum: General
- Topic: Adding a column during concatenation
- Replies: 9
- Views: 2748
- 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 ...
- Sun Apr 22, 2007 10:49 am
- Forum: General
- Topic: Adding a column during concatenation
- Replies: 9
- Views: 2748
- 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:
Two birds, one stone. :D
Code: Select all
cat *.xxx | sed -e 's/$/|M' > fileoutTwo birds, one stone. :D
- 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...
- Sun Apr 22, 2007 6:36 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Reg. mutex error
- Replies: 1
- Views: 921
- 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
- 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:
You can also utilize the Filter Entries and uncheck the Show Categories option in the Director - in that order! Reverse the order once found.
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.
- 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...
- 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
- 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
- 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...
- 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