Search found 4992 matches
- Mon Jun 21, 2004 12:37 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Deleting rows from a target table
- Replies: 4
- Views: 1223
- Mon Jun 21, 2004 12:36 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Abnormal Termination
- Replies: 7
- Views: 2272
It seems like the variable is one of size. If splitting the file into halves works, then I'd guess your problem might be database side. If you say you set the commit count to 1, then rollback or temp segment would be ruled out. So then it might be how your job is designed interfering with the loadin...
- Wed Jun 16, 2004 7:48 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Stage variable in sequential file name
- Replies: 13
- Views: 8720
That brings us to the question, how can we pass a value in a transformer, for example, value contained in a stage variable to a newly created job parameter in the middle of a job and use that in the sequential file name box? Or pass the value in a stage variable to another job where it can be used?...
- Wed Jun 16, 2004 2:01 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Stage variable in sequential file name
- Replies: 13
- Views: 8720
Your premise will NOT work. A file is a fixed resource at startup time of the job. If you have multiple due date values, would you expect multiple outfiles, each containing the relevant data and named accordingly? If all of your data is under the same due date, see the current posts about using the ...
- Wed Jun 16, 2004 1:52 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Need to capture a running total at the end of a transform
- Replies: 18
- Views: 5482
You don't need the stage variables. Just pass an 'X' as the value for a column 'GROUPBYME' in the output link to the aggregator. Setup 3 other columns to track the numbers you want. In the aggregator stage set column GROUPBYME to have group-by checked and listed as the derivation. For the other thre...
- Wed Jun 16, 2004 11:13 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Need to capture a running total at the end of a transform
- Replies: 18
- Views: 5482
Why don't you want to use the aggregator? To simply stream a few columns to it and group by a static column value, like 'X', will accumulate the totals for you and when the stage closes output that one row of totals. This is the simplest and most elegant solution. Stage variables don't work for what...
- Wed Jun 16, 2004 11:10 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: time calculations
- Replies: 4
- Views: 1091
NO. We don't know what 'source' is: database or file. If database, what kind of query? How many columns of data --> 1000 columns vs 10 columns = big difference in runtime. We don't know what 'sort' does: is it sorting on one field, two, three, complex sort logic? Any de-duplication? We don't know wh...
- Wed Jun 16, 2004 9:23 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Suggestion Needed
- Replies: 2
- Views: 740
- Tue Jun 15, 2004 9:14 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Empty Source File
- Replies: 9
- Views: 2839
- Tue Jun 15, 2004 9:13 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Empty Source File
- Replies: 9
- Views: 2839
In order to use the job control APIs you must put this statement at the top of your function/routine (courtesy of Ray Wurlod):
The include statement adds the API definitions to your function.
Code: Select all
$IFNDEF JOBCONTROL.H
$INCLUDE DSINCLUDE JOBCONTROL.H
$ENDIF The include statement adds the API definitions to your function.
- Tue Jun 15, 2004 7:16 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: When do changes to cache size parms take affect?
- Replies: 2
- Views: 767
- Tue Jun 15, 2004 2:20 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Unable to run Manager after 5.2 to 7.0 conversion
- Replies: 17
- Views: 4525
- Tue Jun 15, 2004 12:45 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job Abort
- Replies: 8
- Views: 1764
- Tue Jun 15, 2004 12:19 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job Abort
- Replies: 8
- Views: 1764
- Tue Jun 15, 2004 12:16 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Unable to run Manager after 5.2 to 7.0 conversion
- Replies: 17
- Views: 4525
If you're sure that the metadata is the problem, you can blow away the whole contents by simply doing a CLEAR.FILE DS_METADATA . Hopefully, you have all your metadata in source code control, or you can re-import it. Now, the folder structures are all logical, you can see this by doing a LIST-ITEM DS...