Search found 4992 matches
- Wed Dec 08, 2004 10:52 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Parameters in a Sequence
- Replies: 2
- Views: 1525
- Wed Dec 08, 2004 10:51 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Upgrading from version 5.2 to 7.5
- Replies: 1
- Views: 587
- Wed Dec 08, 2004 10:50 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Multiple Instances and record looping
- Replies: 3
- Views: 665
You want a single row to process in a job, then run the job in its entirety for next row, and so on? Not only is that slow, you are going to find that just running a job that does nothing can take 3-4 seconds. This is because not only does it have startup overhead, wrapup includes purging its log an...
- Wed Dec 08, 2004 10:45 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Help in WriteSeq!
- Replies: 3
- Views: 1234
- Wed Dec 08, 2004 10:44 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Using result from BEFORE-SQL in Input SQL
- Replies: 5
- Views: 1443
- Mon Dec 06, 2004 9:46 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: how to access 5 days worth of data
- Replies: 4
- Views: 1422
- Mon Dec 06, 2004 12:36 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Dealing with duplicates
- Replies: 11
- Views: 2180
I didn't use the word KEY because KEY implies uniqueness. If you have duplicates, how could you have duplicate KEY values? I assumed you are using a different column to uniquely identify rows, thus you could have duplicates. Since you have 8 columns that uniquely identify a row, then your exercise i...
- Mon Dec 06, 2004 12:07 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Missing record from hash lookup
- Replies: 1
- Views: 707
You failed to write it to the hash file because of a key definition violation. Or You wrote it to the hash file but your primary key definition allowed another row to overwrite it. Or You read it from a sequential file into the hash, and had First Row is Column Names checked, but the first row is ac...
- Mon Dec 06, 2004 12:05 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Filtering non alphanumeric charaters
- Replies: 7
- Views: 2470
- Fri Dec 03, 2004 9:29 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Dealing with duplicates
- Replies: 11
- Views: 2180
- Fri Dec 03, 2004 11:49 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Concatenate Hashfiles.
- Replies: 16
- Views: 4629
- Fri Dec 03, 2004 8:37 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Full disk
- Replies: 7
- Views: 1819
All job designs in a project are stored in a single file. You run out of space while writing to that file, and you corrupt it. This means ALL job designs are hosed. There is a chance to partially fix some of the data, but FOR THE MOST PART, it is CATASTROPHIC to run a project out of space while desi...
- Thu Dec 02, 2004 11:26 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Windows to Parallel X
- Replies: 12
- Views: 5392
- Thu Dec 02, 2004 9:26 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Concatenate Hashfiles.
- Replies: 16
- Views: 4629
The distributed hash file has a lot of maintenance overhead, in that you must define partitioning algorithms. A distributed hash file is the same concept as a partitioned table in Oracle. You must include the partition key column when doing any lookup/join to benefit from partition pruning. The poin...
- Thu Dec 02, 2004 9:14 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: date time filed over flow
- Replies: 2
- Views: 611
You need to make sure that data is present to a database in the form that it expects. Oracle returns timestamps without any subsecond digits, whereas SQL-Server expects subsecond digits. There are functions in the SDK folder you should look at for manipulating values. You will want to format the Ora...