Search found 42189 matches

by chulett
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...
by chulett
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...
by chulett
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

Drop one in a job, open it and then click on the Help button. There should also be a pdf document for the stage in your 'Docs' directory under your client installation directory.
by chulett
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

Time Zone? Now, as to the why... :?
by chulett
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

Hardly... looked like a dead-even tie to me! :wink:
by chulett
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 ...
by chulett
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...
by chulett
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 ...
by chulett
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

Um... don't insert NULLs? :wink:

Can you make use of NVL in your source query? It's not generally a good idea to try to aggregate nulls.
by chulett
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)....
by chulett
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

Running out of temp space? Make sure you specify in the 'Temporary Director' property somewhere that has plenty o' room. Leaving that blank defaults to the Project, which seems like what you are doing. It is generally considered to be a Bad Thing to fill that space up. :wink:
by chulett
Wed Aug 11, 2004 9:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sort stage
Replies: 6
Views: 1783

If you click on the 'Help' button in the Sort stage itself, you'll get specific online help for it. In the 'Overview' section, check out the 'Sort Criteria' topic, it explains how to set up the Collating Sequence Map you'll need.
by chulett
Wed Aug 11, 2004 8:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Seq File filter command
Replies: 2
Views: 804

You have to put the entire command in the Filter box, filename included just like you would from the command line. The Filename still needs to be included up top, but it (apparently) will not use it.
by chulett
Wed Aug 11, 2004 8:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Debugging Client has Disconnected
Replies: 14
Views: 4589

Wow... I'm surprised you can run much of anything in 128MB of RAM nowadays. The O/S alone wants that much. :roll:
by chulett
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...