Search found 53125 matches
- Thu Sep 21, 2006 5:03 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: RESIZE issue for hashed file
- Replies: 1
- Views: 1504
You were too late. You had to resize it before it reached 2GB. Now it is in a corrupted state, so that must be fixed first. If you can afford the time to reload the hashed file completely, the quickest way is to clear the hashed file, then resize it while empty. Otherwise, those backward link errors...
- Thu Sep 21, 2006 4:57 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Aggregator transformation
- Replies: 19
- Views: 5547
- Thu Sep 21, 2006 4:55 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Stages that automatically drop columns.
- Replies: 9
- Views: 2073
- Thu Sep 21, 2006 4:53 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: ODBC stage
- Replies: 1
- Views: 1118
Because the table name contains a space, the entire table name or column name must be quoted. If one were to follow the ODBC standard, which was written by Microsoft, one would use double quote characters, for example "TableA"."purchase order" - if that doesn't work, because Microsoft does not follo...
- Thu Sep 21, 2006 2:18 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Using #DSJobStartDate# variable in the Modify stage
- Replies: 1
- Views: 1886
- Thu Sep 21, 2006 2:15 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to overwrite seqfile through basic command.
- Replies: 3
- Views: 1088
- Thu Sep 21, 2006 2:14 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: No proper output while running routine
- Replies: 4
- Views: 1352
- Thu Sep 21, 2006 2:13 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Client not able to connect to DataStage server
- Replies: 7
- Views: 8156
- Thu Sep 21, 2006 2:11 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DICTVOC
- Replies: 6
- Views: 1426
- Thu Sep 21, 2006 2:09 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Problem with BIT as SQL type
- Replies: 1
- Views: 762
- Thu Sep 21, 2006 2:07 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sequence generator
- Replies: 10
- Views: 3633
- Thu Sep 21, 2006 2:04 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Dsjbob syntax - please help
- Replies: 2
- Views: 1094
- Wed Sep 20, 2006 3:30 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Handling Time through stages
- Replies: 3
- Views: 1126
If this is truly time, then the maximum legal value is 23:59:59. If you need 30:00:00 you're really talking about "interval". There is nothing out of the box in DataStage for working with intervals but, because times are stored internally as seconds, then Mod() and Div() functions can be used to gen...
- Wed Sep 20, 2006 3:28 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sequence generator
- Replies: 10
- Views: 3633
The most efficient, if you want to start from 1 for each run, is to use the system variable @OUTROWNUM, since it is keeping that count in any case. However, if you want a genuine sequence (starting again from where it left off), then either the SDK key management routines as mentioned, or a database...
- Wed Sep 20, 2006 3:24 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: No proper output while running routine
- Replies: 4
- Views: 1352
Your code is confused. For example, consider what this code fragment does if the pathname exists. What did you want it to do? OpenSeq PathName To FileVar Else CREATE FileVar ELSE ABORT WriteSeq InfoMessage TO FileVar ELSE STOP End CloseSeq FileVar Do you REALLY want to work with files in the root di...