Search found 53125 matches
- Thu Mar 24, 2005 4:01 pm
- Forum:
- Topic: Matadata - Relational Repository?
- Replies: 5
- Views: 3059
- Thu Mar 24, 2005 4:07 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: COALESCE function
- Replies: 7
- Views: 3803
- Thu Mar 24, 2005 4:05 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Maximum number of links
- Replies: 3
- Views: 1145
- Wed Mar 23, 2005 10:42 pm
- Forum: Enhancement Wish List
- Topic: Command Line Job Unlock Option
- Replies: 9
- Views: 6443
Nothing to stop you modifying, or creating your own, dsjob command. The API is documented ( Server Job Developer's Guide and Parallel Job Developer's Guide ). I think it would need a whole lot more checking to be safe than just who is executing it. Maybe only allow locks held by defunct processes to...
- Wed Mar 23, 2005 10:38 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Informix Wire, unexpected network error
- Replies: 3
- Views: 1499
- Wed Mar 23, 2005 10:16 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Informix Wire, unexpected network error
- Replies: 3
- Views: 1499
- Wed Mar 23, 2005 10:10 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: what derivation to be given to hash file key
- Replies: 6
- Views: 2246
You can use a UV stage to access the hashed file. Declare only col1 to be Key; declare counter not to be Key. In the Transformer stage check the "multi-row return" check box. This will not be fast. To get some speed you would need to create an index on col1 in the hashed file. There is no reason to ...
- Wed Mar 23, 2005 10:01 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Phantom error
- Replies: 3
- Views: 1973
- Wed Mar 23, 2005 10:00 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: what derivation to be given to hash file key
- Replies: 6
- Views: 2246
There's nothing wrong with the design. It just can't be done with a hashed file (other than in its guise as a UV table). Accessing a hashed file via the Hashed File uses the key, the entire key. It is not equipped to use partial key searches. The entire key (that is, the physical representation of t...
- Wed Mar 23, 2005 9:54 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: convert date from (mm-dd-yyyy) to (yyyy-mm-dd)
- Replies: 2
- Views: 1040
... or using substring and concatenation, for example
Code: Select all
link.column[7,4] : "-" : link.column[1,2] : link.column[3,3]- Wed Mar 23, 2005 9:51 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Accessing MSSQL server using DRS stage
- Replies: 3
- Views: 802
- Wed Mar 23, 2005 9:47 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: seq file
- Replies: 3
- Views: 976
- Wed Mar 23, 2005 9:45 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Trying to ftp more than one file using FTP Stage
- Replies: 5
- Views: 3025
Or run a pre-FTP command such as and use that file as the one to stream into your job.
Code: Select all
cat anma022r*.txt > anma002r.all - Wed Mar 23, 2005 9:41 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Summing up decimal numbers behaves odd ?
- Replies: 1
- Views: 656
You will read in other posts and in the DataStage BASIC manual that arithmetic is performed with the full precision of which the machine is capable, and the result rounded to four decimal places (by default) for display. The default can be overridden in routines by a PRECISION declaration. This is n...
- Wed Mar 23, 2005 9:37 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: wait for a file
- Replies: 10
- Views: 4292
Use a job sequence that has a Wait For File activity. That's where you set the timeout, and the file path. Have two outputs from this activity, one that is taken if the file appears, the other if the file does not appear (control this on the Triggers tab). Connect the second link to a Notification a...