Search found 15603 matches
- Sat Oct 22, 2005 12:24 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: compacted ascii data
- Replies: 7
- Views: 2025
Guy, You can still interpret these "switches" as if they were unsigned numbers, one character at a time using the SDK routines. I don't have DS running now so I can't do a quick example, but you can interpret this information for yourself. There are various ways to do this. If you were to take SEQ(I...
- Sat Oct 22, 2005 8:14 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: We have added extra CPUs then we got Extra Problems!!!
- Replies: 5
- Views: 1925
No Problem, it is not as if a group of dark-suited "license Police" are going to come crashing into your data centre to impound the machine The difficulties are not so simple with CPU-based pricing. The last client I was at was running on IBM hardware and activated SMT (simultaneous multi-threading)...
- Sat Oct 22, 2005 8:06 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: compacted ascii data
- Replies: 7
- Views: 2025
Hello Guy, as Kumar has pointed out, this is in actuality a packed data type. There are a number of builtin routines in DataStage that can convert to and from these data types. You will need to find out if the datatype is signed or not, as this affects how to unpack the data. Once you know your data...
- Sat Oct 22, 2005 5:26 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Dynamic hashed files and Static hashed files - pros and cons
- Replies: 7
- Views: 1469
Dynamic hashed files and Static hashed files - pros and cons
I have been doing some testing on relative performance of hashed files at my current site, but believe this applies to many different sites and wanted to open a discussion on the subject of Dynamic Vs. Static hashed files. In the configuration here (multi-CPU AIX, 1000+ daily jobs) there are many ha...
- Sat Oct 22, 2005 5:08 am
- Forum: Enhancement Wish List
- Topic: Vegas
- Replies: 3
- Views: 1999
Kumar, even though it doesn't seem right, Las Vegas is really a central place to hold a conference. The cost of flights there is inexpensive, cost of staying there is much cheaper than most places, the conference facilities are great and most people want to visit there. Holding a similar conference ...
- Sat Oct 22, 2005 5:04 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Improving Performance
- Replies: 9
- Views: 2786
- Sat Oct 22, 2005 5:02 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: We have added extra CPUs then we got Extra Problems!!!
- Replies: 5
- Views: 1925
alraaayeq, this is something you need to clear up with your DataStage sales representative. DataStage licensing is based upon the number of processors, you purchased a license that lets you run DataStage on this system with 8 cpus, but you have put in more and that is a violation of your contract wi...
- Fri Oct 21, 2005 12:37 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Text file read from a particular row.
- Replies: 2
- Views: 724
Create a stage variable called FoundRow, use the derivation
Then make a constraint stating
and Bob's Your Uncle {sorry, I'm in the UK right now and I've been yearning to use that colloquialism}
Code: Select all
IF FoundRow OR {YourCondition} THEN 1 ELSE 0Then make a constraint stating
FoundRow = 1
and Bob's Your Uncle {sorry, I'm in the UK right now and I've been yearning to use that colloquialism}
- Fri Oct 21, 2005 11:32 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Phantom Aborting with @ABORT.CODE = 1
- Replies: 3
- Views: 2548
- Fri Oct 21, 2005 8:47 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Adding 1 day to a given date
- Replies: 3
- Views: 1542
- Fri Oct 21, 2005 8:43 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Issue in Reading Binary data in Datastage
- Replies: 2
- Views: 1286
If you look at your successful run in the director I am 100% certain that it will say "1 row processed", and not the 30 you expect. Most likely you have not declared the sequential file attributes correctly for the file you are reading. PX is quite finicky about this - Fixed Length? - Quote characte...
- Fri Oct 21, 2005 2:38 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Missing record delimiter "\n", saw EOF instead
- Replies: 22
- Views: 38012
- Fri Oct 21, 2005 2:34 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DataStage scheduling issues
- Replies: 6
- Views: 1362
- Fri Oct 21, 2005 2:27 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Time and TimeStamp with microseconds
- Replies: 20
- Views: 10190
I've been resisting the beck and call of writing c++ externals for PX for so long, but this routine is so simple that even I should be able to bind it in within a week's worth of work. So even if I get a solution from Ascential I'll still use Carter's code for my first attempt at this esoteric art I...
- Fri Oct 21, 2005 2:16 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: 10 pounds in a 5 pound bag
- Replies: 28
- Views: 5576
clshore, to add to your computations, the CRC32() algorithm is designed to ensure that sequences that are quite similar will produce very dissimilar results, so that in this example the odds are further reduced by the data being constrained to mainly +-60 characters and maximum length of 200. The li...