Search found 4992 matches

by kcbland
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...
by kcbland
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, ...
by kcbland
Thu Mar 04, 2004 8:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: StringDecode - Default value
Replies: 17
Views: 3856

Ken, I kind of knew this was coming and indeed it was a piece of cake. I was just hoping there may be a function lurking around somewhere that i am unaware of. There will be if you share yours! So, paste the code and enlighten us all!!! Make sure you give yourself credit for creating it!!
by kcbland
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...
by kcbland
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...
by kcbland
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

Yes. Only release 7 has the ability to do so. You can co-exist them, but you run into an issue with the client piece. Check the cd regarding a utility to "switch" you between clients.
by kcbland
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 =...
by kcbland
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...
by kcbland
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.
by kcbland
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

Where did you get the definitions? Do they match the file? PX is very picky about definitions. Are you absolutely positive that the file definitions are correct, you have the right delimiter, quote character, number of columns defined, data types correct, widths and scaling, etc.
by kcbland
Wed Mar 03, 2004 9:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: StringDecode - Default value
Replies: 17
Views: 3856

StringDecode does not work like you desire, as you noted it does not have the ability to do anything "else". You're going to have to write your own routine. You could look at modifying StringDecode to have the necessary logic. aravindkStringDecode(%LookupKey%,'A=1|B=2|C=3|DEFAULT=50') Copy t...
by kcbland
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 ...
by kcbland
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...
by kcbland
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

Your DS BASIC syntax is wrong. To compare two variables, you do X = Y. If you have three sets that have to compare, you do A=X AND B=Y AND C=Z, or the appropriate expression. However, your insert constraint should be: ISNULL(referencelink.primarykey) and your update constraint should be NOT&...
by kcbland
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...