Search found 42189 matches
- Thu Aug 12, 2004 7:20 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Routine against hash file (need dummie's explanation)
- Replies: 6
- Views: 1916
Hmmm... I would think you could do it via your SQL statement if you accessed the hash file with a UV stage. Also consider turning it around. Use the hash as a source and the ODBC information as lookups. Bring in everything from the hash and constrain it to the rows that fall between the two dates. T...
- Thu Aug 12, 2004 7:14 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Impact of migration from Oracle 8i to 9i on DataStage Jobs
- Replies: 4
- Views: 883
Ascential recognized that people would need to do this, so they have provided a utility to upgrade all jobs that use the OCI8 stage to use OCI9. You'll need to explore the cdrom yourself to find it, but it is there and is mentioned in the readme. Technically, the OCI8 stage will still work as long a...
- Thu Aug 12, 2004 7:06 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How does the Link Collector stage work ?
- Replies: 2
- Views: 1740
- Thu Aug 12, 2004 7:04 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Time difference between logsum and logdetail?
- Replies: 4
- Views: 1451
- Thu Aug 12, 2004 7:03 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Clear job log given the job name
- Replies: 5
- Views: 2033
- Thu Aug 12, 2004 7:01 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Clear job log given the job name
- Replies: 5
- Views: 2033
I'm guessing there is some reason why you can't use the 'AutoPurge' functionality of logs? It all boils down to the fact that you want to purge the logs of job run information, not clear them in their entirety which is what CLEAR.FILE does. Ray is letting you know it will remove everything from the ...
- Wed Aug 11, 2004 3:23 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Modifying the EmailNotification Stage
- Replies: 1
- Views: 942
No, the stage itself is not modifiable and does not take parameters in the body of the email. You'd need to look into writing your own routine to wrapper 'sendmail' or whatever you are using for email. That way you could build it to take parameters or to do whatever it is you needed. Then use the Ro...
- Wed Aug 11, 2004 3:01 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DateTime error
- Replies: 1
- Views: 984
Simplest thing to do is replace your target Oracle stage with a Sequential File stage and write things out to a flat file. What does it look like there? Keep working the job until the output looks correct, then hook the OCI stage back up. ps. I personally find it "best" to work with Oracle dates as ...
- Wed Aug 11, 2004 1:38 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Row out of sequence - Error
- Replies: 15
- Views: 4935
- Wed Aug 11, 2004 11:58 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: truncated data
- Replies: 1
- Views: 689
You have a field in your source table that is not "properly" defined in the job. By that I mean the defined size is too small. Typically, this is because you have a LONG or NUMBER field you are extracting. Any chance of this? Note that I literally mean NUMBER as opposed to something like NUMBER(38)....
- Wed Aug 11, 2004 11:08 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sort stage error: Error in merging files
- Replies: 13
- Views: 4997
- Wed Aug 11, 2004 9:34 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sort stage
- Replies: 6
- Views: 1783
- Wed Aug 11, 2004 8:42 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Seq File filter command
- Replies: 2
- Views: 804
- Wed Aug 11, 2004 8:33 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Debugging Client has Disconnected
- Replies: 14
- Views: 4589
- Wed Aug 11, 2004 7:10 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sort stage
- Replies: 6
- Views: 1783
Hey Ken, Standard ASCII sorting sequence is numbers first as they have a lower value than letters. Space and punctuation comes first, then numbers followed by upper case and then lower case letters. If you need to override this, I think you have other options rather than the external 'map' but I'm c...