Search found 4992 matches

by kcbland
Thu Mar 23, 2006 4:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SQLServer stored procedure within a server job
Replies: 4
Views: 1154

Use remsh or rsh to remote command execute on a Windoze server OSQL/ISQL.
by kcbland
Thu Mar 23, 2006 3:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stored Procedure Stage
Replies: 1
Views: 916

Yes, there's an SP stage. Do you need it to do something, or spool/load rows?
by kcbland
Thu Mar 23, 2006 9:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stored Procedure
Replies: 9
Views: 1911

You're mixing "do something" SPs with "streaming" SPs. The SP stage is meant to either stream output or accept input rows. If you need to "do something", sqlplus is the best method. Consider just using a Batch job to call ExecSH. You'll find that's a really simple and powerful solution.
by kcbland
Wed Mar 22, 2006 8:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: need ideas for Better Design style for PX
Replies: 1
Views: 743

Real Kimball's ETL toolkit book. He covers a lot of your questions. I personally agree absolutely with him. However, the PX mentality of all-in-one jobs don't lend themselves to the concepts of restartable, maintainable, modular, reusable, etc as discussed in Kimball.
by kcbland
Wed Mar 22, 2006 4:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need these Differences
Replies: 9
Views: 2062

Arnd, from Director menu, go to Tools-->Batch-->New and you get a DS job control screen that creates a job. The name defaults to "Batch::something" where you supply the something. Only these jobs are "editable" from the Director menu. You're old school, they added this under DS 3.5 and now discourag...
by kcbland
Wed Mar 22, 2006 4:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Difference in key management functions
Replies: 7
Views: 2416

Concurrent means simultaneous jobs are calling the function for the same table. Surrogate key assignment outside a database requires a "seed" value, in other words the maximum value in the target table. You need to set the seed value prior to calling the function to make sure your database value mat...
by kcbland
Wed Mar 22, 2006 1:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need these Differences
Replies: 9
Views: 2062

Here's an example of what you can do with customized Batch jobs and job control:

http://www.dsxchange.com/viewtopic.php?t=85210
by kcbland
Wed Mar 22, 2006 1:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need these Differences
Replies: 9
Views: 2062

This is a frequently asked question. Search the forum, there's lots of discussion.
by kcbland
Wed Mar 22, 2006 10:35 am
Forum: General
Topic: Wha are the Datastage contract rates in the US?
Replies: 8
Views: 3889

1. W-2 contract employees have different tax obligations than corp-to-corp rates. 2. Customer is willing to pay $X/hour for average developer. Contracting company wants 25-50% of that, so contractor gets .50 to .75 of $X. If Contracting company is subcontracting, each layer takes a piece of the bill...
by kcbland
Wed Mar 22, 2006 9:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS.REINDEX ALL has been executed while clients are connected
Replies: 7
Views: 5672

I hate a horked up project.
by kcbland
Wed Mar 22, 2006 9:01 am
Forum: Site/Forum
Topic: membership fee is quite high
Replies: 8
Views: 3982

If anyone hasn't noticed, kumar_s is a prolific and skilled non-Premium Poster. Those answers are still FREE folks. Occassionally we (Premium Posters) may correct or augment existing non-Premium answers.

Everyone should be extremely happy.
by kcbland
Wed Mar 22, 2006 8:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem while Looking up in Distributed Hashed File
Replies: 5
Views: 1664

64BIT and distributed files have never been cache supported, AFAIK.
by kcbland
Wed Mar 22, 2006 8:09 am
Forum: Site/Forum
Topic: membership fee is quite high
Replies: 8
Views: 3982

If you are a professional, it's a cost of business. If you are an employee, get your boss to pay for it. I personally think we're just as good as buying a book, and many companies have funds for libraries, training, and memberships. If you're a "student", where are you even using DataStage? On a 6-m...
by kcbland
Tue Mar 21, 2006 9:59 pm
Forum: General
Topic: Wha are the Datastage contract rates in the US?
Replies: 8
Views: 3889

Corp-to-corp no travel expenses:
low level developer, 2-4 years experience, 35-75/hour
Senior architect, 8-12 years experience, 100-150/hour
by kcbland
Tue Mar 21, 2006 4:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Image data migration and transformation
Replies: 20
Views: 4735

I sure hope that compression algorithm is understood by whatever looks at that column of data. Taking "jpeg" data and compressing it with an lzw algorithm means you no longer have jpeg data, but lzw. If you're expecting lzw data to show as a picture, you'll first have to un-lzw it to get it back to ...