Search found 4992 matches

by kcbland
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

Add the -wait option to force the dsjob program to wait for the job to finish, or, go into a loop periodically checking the status yourself until you see that the job has finished.
by kcbland
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 ...
by kcbland
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.
by kcbland
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...
by kcbland
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...
by kcbland
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

John is looking for a database level checksum/crc32 function to facilitate queries in the native database.
by kcbland
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

I'll get the job control libraries and full utility set out there today. Sorry for the delay.
by kcbland
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...
by kcbland
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

There should be no overhead to the physical job execution. If a job is unnecessarily enabled but never ran as an instance, there is probably no impact whatsoever to performance. There's no extraneous job log messaging, etc.
by kcbland
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...
by kcbland
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

Absolutely, Server jobs are still an option, Sequence and Batch jobs as well. There is NO other method in PX to do similar things, because PX is just a job flavour.
by kcbland
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...
by kcbland
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...
by kcbland
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

By the way, the Informix, Sybase, and DB2 plugins all have this same issue. Get used to toggling DATE to TIMESTAMP. the DRS stage is just a facade to the plugins, so it's all the same.
by kcbland
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...