Search found 53125 matches
- Thu Nov 09, 2006 1:01 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Copy tables from one Database to another Database
- Replies: 8
- Views: 4605
- Thu Nov 09, 2006 12:59 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Buttons disabled like Scheduled, Mainframe, Parallel, Remote
- Replies: 7
- Views: 1985
- Thu Nov 09, 2006 12:57 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: NLS Problem?
- Replies: 10
- Views: 9503
- Thu Nov 09, 2006 12:53 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to clear the Hash Entries in the VOC file
- Replies: 7
- Views: 4051
If you create the hashed file in the account, the correct way to remove it is to use the DELETE.FILE command. Given that you have removed the operating system object, you now have two other tasks to perform to clean up; remove the operating system object for the dictionary portion and remove the VOC...
- Thu Nov 09, 2006 12:48 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: command reference manual
- Replies: 1
- Views: 1000
Because Windows has no native telnet service, DataStage provides a telnet service. Therefore you connect straight into a DataStage environment in the project that you select. If, from there, you need to get to the operating system, use the DOS command. If you want immediate return from a single DOS ...
- Thu Nov 09, 2006 12:45 pm
- Forum: General
- Topic: DS Info - Problem with URL
- Replies: 6
- Views: 4933
- Thu Nov 09, 2006 12:43 pm
- Forum: General
- Topic: Capturing comments added in Version Control.
- Replies: 5
- Views: 4015
- Thu Nov 09, 2006 12:42 pm
- Forum:
- Topic: Taking metadata from a file
- Replies: 18
- Views: 5990
- Thu Nov 09, 2006 12:40 pm
- Forum: IBM QualityStage
- Topic: QS (Hawk) Standardization Override
- Replies: 4
- Views: 1649
- Thu Nov 09, 2006 12:38 pm
- Forum: IBM QualityStage
- Topic: match stage like names
- Replies: 2
- Views: 1264
Unless your data have been through a Standardization stage the Match stage is likely to assign a negative (disagreement) weight to "Bob" and "Robert". But you could match on a phonetic of some kind - probably not one of the out-of-the-box ones, which require the first or final character to match. Be...
- Thu Nov 09, 2006 9:04 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Extracting String
- Replies: 28
- Views: 6714
Beware that there may be other X characters in the key. In that case a different formulation will be required, such as
Code: Select all
If Right(InLink.TheString) = "X" Then Left(InLink.TheString,Len(InLink.TheString)-1) Else InLink.TheString- Thu Nov 09, 2006 8:59 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Performance question with ORAOCI8 stages
- Replies: 15
- Views: 4708
Re: Performance question with ORAOCI8 stages
Is there any reason why performance would taper off after a certain period? Yes, the reason is that you're equating rows/sec with performance. Rows stop when all rows have been sent to the server, but there they're all queued waiting for the COMMIT. The clock keeps running while the database then i...
- Thu Nov 09, 2006 8:55 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Configure parallel engine
- Replies: 3
- Views: 1172
- Thu Nov 09, 2006 8:54 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Problem of Misssing Jobs..
- Replies: 8
- Views: 1817
- Thu Nov 09, 2006 8:53 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Performance issue with DB2 Stage
- Replies: 4
- Views: 1091
Rows/sec is entirely misleading in this scenario. It's probably valid while the data file for the bulk loader is being written. However, the clock keeps running after that, so the rows/sec reported diminishes, while the bulk loader is doing its things. Do not react to rows/sec. It's a meaningless me...