Search found 4992 matches
- Wed Jan 18, 2006 11:00 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sequential File Issue
- Replies: 6
- Views: 1154
Your original solution was great, you just needed to add an additional column at the beginning of each output file. The derivation of that column is @INROWUM. This means that each output file would have a column that is the original line number in the source file. Carry that value to the end of your...
- Wed Jan 18, 2006 10:56 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Test plan
- Replies: 3
- Views: 796
Test plans are part of software development. This website is devoted to implementing IBM's data integration products. There are no components that deal with automating testing, such as test data generators and test case generators. You're talking about making your own standards for testing. When it ...
- Wed Jan 18, 2006 10:50 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Oracle Plugin doesn't work
- Replies: 2
- Views: 669
- Wed Jan 18, 2006 10:48 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Readonly Routines
- Replies: 2
- Views: 765
Yes, but only by using a "hack" update into the internal repository to mark the routine as read only or exporting the routine and updating the metadata in the .dsx file to mark the routine as read only. There's no checkbox or other supported method for doing what you ask in the Manager/Designer clie...
- Wed Jan 18, 2006 10:45 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Terrible Performance due to log file
- Replies: 25
- Views: 8432
The logs degrade performance only when the job has to put a message into its log file. Since the log file is actually a dynamic hash file, an extremely large hash file may take longer to add a row, especially if the file just happens to need to dynamically expand at that point in time. If the job is...
- Wed Jan 18, 2006 8:27 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: unregen/uvrestore
- Replies: 1
- Views: 535
- Tue Jan 17, 2006 3:16 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to ignore lines at the beginning and ending of a file
- Replies: 11
- Views: 4627
- Tue Jan 17, 2006 2:33 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to ignore lines at the beginning and ending of a file
- Replies: 11
- Views: 4627
- Tue Jan 17, 2006 2:15 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Invalid Argument Value in a single delete statement
- Replies: 8
- Views: 1785
- Mon Jan 16, 2006 9:28 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ROW TO COL
- Replies: 17
- Views: 5695
- Mon Jan 16, 2006 4:52 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ROW TO COL
- Replies: 17
- Views: 5695
Use three stage variables: GroupKeyChanged = CurrentGroupKey <> inlink.groupkeycolumn CurrentGroupInternalNumber = If GroupKeyChanged Then 1 Else CurrentGroupInternalNumber + 1 CurrentGroupKey = inlink.groupkeycolumn In the output link for the group key, use a constraint of just stage variable Group...
- Mon Jan 16, 2006 3:20 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ROW TO COL
- Replies: 17
- Views: 5695
A stage variable to track changes in the first column should do the trick. The only difficulty you will have is the extra output row when the change occurs. You'll need to output a row with the group value, then output the remaining data for the first row in that group as a second output row. Then, ...
- Mon Jan 16, 2006 3:10 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: something overwriting $ORACLE_HOME in $SHLIB_PATH
- Replies: 7
- Views: 2081
The S99ds.rc script that starts/stops the services actually READS the dsenv file and write a temporary one used later on in the script. You may want to look thru this script and see if you can identify where the problem is occurring. You might have a syntax error or a permissions error somewhere tha...
- Fri Jan 13, 2006 12:11 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: parameters not being passed in test environment
- Replies: 7
- Views: 1754
- Fri Jan 13, 2006 11:02 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Terrible Performance due to log file
- Replies: 25
- Views: 8432