Search found 4992 matches
- Thu Aug 26, 2004 1:18 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: cannot insert null
- Replies: 7
- Views: 1393
- Wed Aug 25, 2004 9:03 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Can I use administrator commands on hash not in project?
- Replies: 9
- Views: 1868
Resizing hash files implies that your hash files have some persistency. I would not call this a best practice. There's a difference between right-sizing a hash file that is cleared/created with every one, and sizing a hash file for persistency. If your hash file is used in a transient work nature, y...
- Tue Aug 24, 2004 8:37 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: comparing
- Replies: 1
- Views: 1045
First, you're posting in the wrong forum. Server questions are for the Server forum, this forum is for Parallel jobs. Second, I'm trying to follow your wording, but it's confusing. If you're writing to a hash file and referencing it as well, you have to NOT use any read or write caching, as reads wi...
- Tue Aug 24, 2004 2:34 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: varchar to date
- Replies: 9
- Views: 2807
- Tue Aug 24, 2004 1:00 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Null value in nonnullable field
- Replies: 2
- Views: 624
- Tue Aug 24, 2004 12:58 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Date Conversion
- Replies: 2
- Views: 716
- Mon Aug 23, 2004 9:05 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: File access problem - Process cannot access file
- Replies: 13
- Views: 4428
- Mon Aug 23, 2004 8:29 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Abnormal termination of DataStage.
- Replies: 15
- Views: 8945
Could be an issue, one customer of mine uses OCI8 with 8i client to talk to 9i databases, but OCI8 with 9i client talking to 9i, not sure. One last thing to look at is if you have row buffering turned on. Search the forum, but this is a finicky feature and you may wish to try turning it off after yo...
- Mon Aug 23, 2004 7:22 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DataStage comparison to Oracle OWB
- Replies: 11
- Views: 6804
Well, consider that Oracle is giving it away for free . What does that tell you? It tells me that no one will buy it. I've use it, I consider a piece of junk. It's method is "do everything inside Oracle". You have little or no incentive to structure things in a well-staged manner. It's highly graphi...
- Mon Aug 23, 2004 7:18 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Abnormal termination of DataStage.
- Replies: 15
- Views: 8945
- Fri Aug 20, 2004 2:21 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Date Conversion
- Replies: 28
- Views: 8315
Your target is DB2, that little nugget of information makes all the difference in the world. The DB2 plugin has this pesky quirk, unlike ALL OTHER STAGES, that likes the date in the INTERNAL format. Search this forum, we've covered this lots of times. Either set your metadata on the DATE column to C...
- Fri Aug 20, 2004 1:41 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Date Conversion
- Replies: 28
- Views: 8315
This is irritating. IF YOU ALREADY HAVE A DATE, YOU DO NOT USE ICONV. If you have a string of text that looks anything like a date, use ICONV to turn it into an integer date value that DS understands: ICONV(yourdate, "D"). Now, to format that internal integer value into a formatted date, use OCONV: ...
- Fri Aug 20, 2004 10:38 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Date Conversion
- Replies: 28
- Views: 8315
- Fri Aug 20, 2004 10:36 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: The IF statement
- Replies: 7
- Views: 2501
- Fri Aug 20, 2004 10:31 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How can I get the size of a file
- Replies: 3
- Views: 1283
What do you mean by "size"? Row count or character count or total disk consumption? DataStage has no facility for sizing a file before processing. Yes, you could have a job read every row of the file, collect the total number of characters in use and row count. If row count is what you need, you cou...