Search found 53125 matches
- Tue Sep 13, 2005 4:57 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Char to Varchar convert
- Replies: 8
- Views: 13494
- Tue Sep 13, 2005 4:55 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Can't start DS server!
- Replies: 16
- Views: 6784
- Tue Sep 13, 2005 4:52 pm
- Forum: General
- Topic: Find the Last Modified Date of a Job
- Replies: 12
- Views: 6479
- Tue Sep 13, 2005 4:49 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Best Practices for Version Control Tool of DS
- Replies: 3
- Views: 1630
How "odd" are the jobs? Seriously, Version Control is a good tool for promotion because of the control it allows you over the target environment (read-only, recompile, etc.) and the ability to include other folders (for scripts, etc.) in the process. Version Control for DataStage is not, however, a ...
- Tue Sep 13, 2005 4:47 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Writing a Time based Routine
- Replies: 4
- Views: 1232
- Tue Sep 13, 2005 4:45 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: SQL is returning so many rows that the hash overflows
- Replies: 3
- Views: 991
You are unlikely to have overloaded the hashed file, otherwise you would have received error messages indicating this fact, and you have failed to mention any. By default a hashed file can contain 2GB of data, and can be adjusted to accommodate much more. I'd be looking at the Informix end. Exactly ...
- Tue Sep 13, 2005 4:39 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Expression Evaluation
- Replies: 17
- Views: 4962
Assertion: DataStage BASIC does not have an expression evaluating function. Now that I understand the requirement, I'd suggest going out to the UNIX expr command to evaluate these expressions. Beware, however, that the expression elements have to be separated by spaces, and any operator meaningful t...
- Tue Sep 13, 2005 4:31 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to find a huge job log
- Replies: 14
- Views: 4639
- Tue Sep 13, 2005 4:26 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to build Time dimension table
- Replies: 11
- Views: 5529
- Tue Sep 13, 2005 4:21 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: dsapi processes for a job
- Replies: 16
- Views: 8053
No. Depends on how many connected client sessions. One developer can have many of these. Each will have one dsapi_server process, but each can fork more than one dsapi_slave process. They should all go away once there are no connected clients. Therefore the answer to your question if there are no co...
- Tue Sep 13, 2005 4:16 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Using vmdsrpos.dll how to run the jobs
- Replies: 1
- Views: 1055
- Tue Sep 13, 2005 4:13 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Error while using Change capture stage
- Replies: 2
- Views: 912
- Tue Sep 13, 2005 4:12 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Checking the jobs in runnable state
- Replies: 10
- Views: 3687
- Tue Sep 13, 2005 4:10 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: resetting job parameters
- Replies: 1
- Views: 678
Welcome aboard. :D Your reading has been inaccurate. It's not just not recommended, it's not possible. A running job can not change its own parameter values. You need to pre-process that file in an earlier job (or routine) to extract the values, then load those (in a job sequence) into the parameter...
- Tue Sep 13, 2005 4:04 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Calculate Row Counts
- Replies: 4
- Views: 3256
I have to get the ... The obvious alternative is that you don't have to. DataStage does it anyway; it's all in the job log, primarily in events for "active stage finishing". Don't even consider capturing these data while the job is running; it will destroy your throughput. In an after job subroutin...