Search found 53125 matches
- Tue Apr 19, 2005 6:03 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Who is logged on DataStage
- Replies: 9
- Views: 2997
- Tue Apr 19, 2005 5:59 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: VersionControl Tables
- Replies: 6
- Views: 1063
- Tue Apr 19, 2005 5:55 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to count the number of records in a seq file
- Replies: 8
- Views: 2543
- Tue Apr 19, 2005 5:52 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Aggregation on a single field
- Replies: 9
- Views: 1645
Think about how you would do it in a query. You'd almost certainly need a temporary table (virtual or physical) in which to store the keys and associated sums, so that you could join this with the original result set. Well, no surprise, the processing isn't really any different in DataStage; you jus...
- Tue Apr 19, 2005 5:48 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Error calling subroutine
- Replies: 4
- Views: 1212
- Tue Apr 19, 2005 5:45 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DS interpreting warning as error
- Replies: 2
- Views: 1027
DataStage's engineers' philosophy is to log every warning generated by anything anywhere, the argument being that if it was important enough to generate it's important enough to log. DataStage, therefore, has no mechanism for ignoring specific warnings (or even informational messages, like Informix'...
- Tue Apr 19, 2005 5:41 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Connecting to DataStage server failed...
- Replies: 17
- Views: 4526
- Tue Apr 19, 2005 5:39 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Dates differences in years and months
- Replies: 3
- Views: 1944
- Tue Apr 19, 2005 5:32 pm
- Forum: Site/Forum
- Topic: Number of posts in own information
- Replies: 5
- Views: 3610
- Tue Apr 19, 2005 5:29 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Datastage jobs cannot be run/execute
- Replies: 6
- Views: 1843
- Tue Apr 19, 2005 1:04 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Dynamic where clause from another table
- Replies: 2
- Views: 1816
- Tue Apr 19, 2005 1:02 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Unable to read LOGS.DIR entry from D_UV_LOGS
- Replies: 6
- Views: 2777
- Tue Apr 19, 2005 12:58 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Script to delete files based on timestamp
- Replies: 8
- Views: 3015
You could try the find command (with exec of rm ) through remote shell. Your UNIX administrator will have a heart attack when you ask for authority to do this, but you merely need to convince her or him that your UNIX skills are sufficiently up to scratch! It may be better to create such a shell scr...
- Tue Apr 19, 2005 12:56 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Connecting to DataStage server failed...
- Replies: 17
- Views: 4526
If you can't find .dshome in the root directory, your installation is incomplete and you will probably need to reinstall the server. Use ls -al /.dshome to determine whether you really can not find this file. If you believe that the installation is successful otherwise, you could try to create /.dsh...
- Tue Apr 19, 2005 12:52 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: SEQ_FILE
- Replies: 7
- Views: 1875
Stage variables svRecType init @NULL derivation Left(InLink.Column, 1) svTest init 0 derivation If (svRecType = "X") And (@INROWNUM > 1) Then (svYCount = 0) Or (svZCount = 0) Else @FALSE svYCount init 0 derivation If svRecType = "X" Then 0 Else svYCount + 1 svZCount init 0 derivation If svRecType = ...