Search found 4992 matches

by kcbland
Tue Oct 18, 2005 7:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Difference between ORABULK stage and RBDLOAD stage
Replies: 8
Views: 2463

Silly little dreamer. :lol: Who says the best product has to win?

Without a doubt, properly modeled and properly adminstrated, Redbrick is phenomenal.
by kcbland
Tue Oct 18, 2005 7:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: working with db2 stored procedures in datastage
Replies: 5
Views: 1546

... but a cannon can be used to swat a bug, can't it? And with a big enough hammer you can drive screws instead of screwing them in. The problems for both methods are: 1. The results aren't pretty. 2. You'll probably damage the surroundings with that size of a whack or cannonball. Plus, if you're i...
by kcbland
Tue Oct 18, 2005 3:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage EE repository
Replies: 2
Views: 793

Single node. Choose wisely.
by kcbland
Tue Oct 18, 2005 12:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: working with db2 stored procedures in datastage
Replies: 5
Views: 1546

If you are new to unix you have to seriously consider spending some time understanding operating system commands and shell scripting. ksh, csh, sh, perl, java, whatever is your flavor, scripting is integral to developing any application on unix. If you have a requirement to copy a file from one dire...
by kcbland
Tue Oct 18, 2005 12:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: working with db2 stored procedures in datastage
Replies: 5
Views: 1546

DataStage is an ETL tool, it's meant to manage loading data. Your situation requires DataStage to be used as a command executer. Wouldn't a shell script be much simpler? DataStage has support for stored procedures as a means to either: receive streaming data like a cursor and do something with it; o...
by kcbland
Tue Oct 18, 2005 11:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage installation
Replies: 10
Views: 2658

Yes
by kcbland
Tue Oct 18, 2005 10:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage phantom error
Replies: 14
Views: 5746

Or there could be a routine with conditional logic with a path that is mostly never traversed. Maybe nowyour source data is in a condition that is causing that branch to be used, and it references a variable previously not set.

Edited: corrected "past" to "path"
by kcbland
Tue Oct 18, 2005 10:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Running series of SQLs after the job finish
Replies: 2
Views: 670

Can't. You could use a stored procedure.

How about a second job that runs all of the SQL commands you need, via command line executes. You can use a Sequencer job to do that, you can use a Batch job to do that.
by kcbland
Tue Oct 18, 2005 7:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to Call DSSetUserStatus (value) in Oracle stage.
Replies: 2
Views: 1092

Have you looked at using the after-job routine? How do you propose to decide what status to set? You can't "see" the Oracle stage, so there's no way to return any information from that stage.

What need are you trying to meet?
by kcbland
Tue Oct 18, 2005 7:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Difference between ORABULK stage and RBDLOAD stage
Replies: 8
Views: 2463

IBM only owns Redbrick because they acquired Informix, who only owned Redbrick, because they acquired it from Ralph Kimball.
by kcbland
Tue Oct 18, 2005 7:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: job log
Replies: 10
Views: 4203

Please use the correct forum next time. :cry:
by kcbland
Tue Oct 18, 2005 7:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Conditionnal update
Replies: 5
Views: 1470

Re: Conditionnal update

UPDATE TAB SET CASE Type = 'NAT' then NAT=:2 Type = 'REG' then REG=:2 end WHERE Key=:1 You have to update all columns, they need to be bound because of the laws of SQL. You can't be switch columns in your set, you have to have each column defined. You can always update a column with its existing va...
by kcbland
Mon Oct 17, 2005 7:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date conversion from time stamp to yyyy/mm/dd
Replies: 10
Views: 37080

Okay, one last time. How are you viewing your result in the Oracle table? Are you browsing with DS's view data button? You do realize that Oracle stores dates in an internal integer value and that it is up to the device querying the data to format it in a manner you like? Therefore, DS puts a TO_CHA...
by kcbland
Mon Oct 17, 2005 7:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: multi record processing
Replies: 6
Views: 1450

For a beginner who doesn't know DS it sure is an esoteric example using the proverbial emp table. If the result set is to be: 1. All employees without a manager 2. All managers without an employee 3. An employee per manager, allowing for multiple managers per employee If using tables to do this work...
by kcbland
Mon Oct 17, 2005 7:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Diff between server Job Parallel Job
Replies: 30
Views: 9759

Re: Comments about Parallel routines

what about Parallel routines , which forces the DataStage folks to know C?? comments please Are you moving millions or billions of rows of data? Is your hardware thousands or hundreds of thousands of dollars? Is your software budget one hundred or five hundred thousand dollars? Is your team skillse...