Search found 4992 matches
- Thu Mar 04, 2004 11:45 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Paralell Extender Configuration
- Replies: 5
- Views: 6447
The PX definition is more rigidly enforced. Server jobs don't attempt to data type verify or check widths, etc. So, PX jobs will have issues with non-conforming data. Start small, take the first row from the sequential file and create a new one-row file. Try viewing that file and see if it works. If...
- Thu Mar 04, 2004 11:44 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Problem with hash file key and look-up
- Replies: 15
- Views: 3989
Change your output from the job to sequential text files for debugging purposes. It's easy to see the results and what is happening, rather than deal with the job breaking of the time when you have a DB issue. Spool it to files and check the results there. That's just a handy development tip. Then, ...
- Thu Mar 04, 2004 8:52 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: StringDecode - Default value
- Replies: 17
- Views: 3856
- Thu Mar 04, 2004 8:32 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ORA-01036 in job..
- Replies: 6
- Views: 1922
We requested an enhancement that would prompt when viewing data from an OCI stage for a set of values corresponding to the where clause. That would be nice from a troubleshooting point of view. Hey, make sure you ask for a "CANCEL" button for when the query takes too long. It's great fun when you v...
- Wed Mar 03, 2004 11:53 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Installation of DS 5.2 and DS 7. on the same Unix server ?
- Replies: 4
- Views: 974
Are you sure about that, Ken? The server part, that is? Hey man, didn't you see the slideshow on the release? Apparently, because 5.x is still sooo much Universe that release 7.x is almost a pure DSEngine. They even changed the port number being used, as well as the shared memory segment identifier...
- Wed Mar 03, 2004 10:31 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Installation of DS 5.2 and DS 7. on the same Unix server ?
- Replies: 4
- Views: 974
- Wed Mar 03, 2004 10:09 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Dynamic output filename
- Replies: 2
- Views: 771
This is an uncertified DS BASIC subroutine that my team is working on, but you might be able to get what you need from it. It is meant to be called from a DS job either before/after stage/job routine. It uses a delimited argument that contains comma separated list of packed arguments. FunctionName =...
- Wed Mar 03, 2004 9:53 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Dynamic output filename
- Replies: 2
- Views: 771
Sorry for the late reply, my first read indicated this was a well traveled topic so I let it ride, hoping you'd search the forum and get the answer yourself. As I understand it, you don't have a single fixed output file, you have a dynamic number of output files based on a column of data, and that c...
- Wed Mar 03, 2004 9:43 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Prism to DataStage
- Replies: 7
- Views: 2268
Re: Prism to DataStage
gdean wrote:I would really appreciate any tips for getting started with the process.
Get Tom inhouse and have him give you a bootcamp....He's getting too comfortable in Key West.
- Wed Mar 03, 2004 9:11 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Paralell Extender Configuration
- Replies: 5
- Views: 6447
- Wed Mar 03, 2004 9:02 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: StringDecode - Default value
- Replies: 17
- Views: 3856
- Wed Mar 03, 2004 8:48 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Pass value between jobs
- Replies: 7
- Views: 3296
If the first job has only the responsibility of getting that max value and writing it somewhere, why not encapsulate that SQL logic into a shell script call or a DS routine wrapped to that shell script call? Then, you could fetch that value either in job control and pass it as a value, or, during a ...
- Wed Mar 03, 2004 8:45 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ORA-01036 in job..
- Replies: 6
- Views: 1922
In a source OCI stage, viewing the data actually runs the SQL statement. In a reference OCI/ODBC stage, viewing the data runs an altered SQL statement. Think about it a minute, the query for a reference is used to being handed specific values to use in the select. For example, your reference link is...
- Wed Mar 03, 2004 8:40 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Problem with hash file key and look-up
- Replies: 15
- Views: 3989
- Wed Mar 03, 2004 4:41 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Aggregator (First) to remove Duplicates
- Replies: 4
- Views: 1016
Another option is to read your source data and pass it into a transformer stage. Put an output link of the data into a hash file using your defined primary key. Setup a reference link to that same hash file. In your constraint put something like ISNULL(referencelink.primary) so that only rows not wr...