Search found 4992 matches
- Mon Oct 16, 2006 8:57 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to know if job run from cammand prompt whether it was sc
- Replies: 2
- Views: 777
- Sat Oct 14, 2006 4:10 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: STAGECOM Data structures & Hawk
- Replies: 15
- Views: 3630
It's not so much "Ken's utilities" as it is the method. A centralized job (kind of like a Sequence) that organizes the flow and execution of a series of jobs. In addition to parameter setting, we took it about 42 steps further and introduced dynamic instantiation, instantiation based on an array of ...
- Fri Oct 13, 2006 2:15 pm
- Forum: General
- Topic: See you at the IBM show
- Replies: 6
- Views: 3296
See you at the IBM show
For those attending the conference, stop by the DSXchange booth and say hi. Ray Wurlod and myself will be there to meet and greet our many friends on the DSXchange.
- Fri Oct 13, 2006 2:12 pm
- Forum: General
- Topic: Recompiling all jobs following upgrades is slow.
- Replies: 13
- Views: 6686
My compile utility job is multi-instance enabled. You can run multiple instances and give the parameter for the folder a different value. I do this so that I have the compile running server side, as well as parallel executing jobs. It gets it done a lot quicker. The only issue I've found is that som...
- Fri Oct 13, 2006 2:08 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: STAGECOM Data structures & Hawk
- Replies: 15
- Views: 3630
The latest stuff is documented in the JobControlGoodies zip. There's even a job control document to go with it. Keep in mind, all of this stuff is part of a larger scheme, it's up to the individual to get it working in your environment. It's a little rough around the edges, but should be easy to get...
- Fri Oct 13, 2006 12:49 pm
- Forum: Enhancement Wish List
- Topic: Could anyone else use a checksum() type ability for DB2?
- Replies: 8
- Views: 3200
- Fri Oct 13, 2006 12:44 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: STAGECOM Data structures & Hawk
- Replies: 15
- Views: 3630
- Fri Oct 13, 2006 7:51 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: STAGECOM Data structures & Hawk
- Replies: 15
- Views: 3630
There are folks running around as IBM consultants giving out core functionality items in job designs that uses the proprietary job design array structures to facilitate some transformation activities. In my opinion, this is a MAJOR mistake. The use of non-documented and internal knowledge means that...
- Thu Oct 12, 2006 5:50 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Allowing multiple instances when it is not necessary
- Replies: 6
- Views: 1961
- Thu Oct 12, 2006 9:53 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Separate two command in "After Job Subroutine"
- Replies: 9
- Views: 3633
Consider using an After-Stage subroutine call also. Maybe on the last link writing to the last Passive stage. Add a Transformer if necessary to do this. You do have After-Stage subroutine calls that are exactly the same as After-Job subroutine calls. Put one command in the stage, the other in the jo...
- Wed Oct 11, 2006 7:33 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Does Enterprise Edition run DS basic script
- Replies: 2
- Views: 772
- Wed Oct 11, 2006 11:49 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: position string
- Replies: 3
- Views: 1010
You will always get back a string, unless the value is a NULL, you'll get a NULL. If the value is shorter in length than your position, you will get blank (you know quote-quote ""). Since you're using it in an If-Then-Else, you need to consider handling the NULL condition, which you're not. You're a...
- Wed Oct 11, 2006 7:42 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to traverse thru a hierarchy of records
- Replies: 8
- Views: 1666
The easiest method is going to be a DS Function that opens and reads a hashed file. You would want to stage all of the data into a hashed file. Then, read your parent rows and for each row use a Function to derive your required results. That Function can lookup a child row in the reference hashed fi...
- Wed Oct 11, 2006 7:26 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Source and Target have DRS stages data is not loading.
- Replies: 14
- Views: 2607
- Wed Oct 11, 2006 7:25 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Source and Target have DRS stages data is not loading.
- Replies: 14
- Views: 2607
The issue is that the DB2 Plugin and DRS stage set to DB2 have the same stupid logic that translates DATE datatype values to the internal DS BASIC date integer value. Toggling to TIMESTAMP prevents this from happening, and everything works fine. When loading into a table, DATE columns are expected t...