Search found 4992 matches

by kcbland
Fri Apr 09, 2004 8:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to implement typeII slowly changing dimensions in star
Replies: 4
Views: 1651

DS306 is the Ascential course designed by Mike Favero, Art Walker, Dale Nichols, and myself. It takes you thru a generic example of building a data warehouse ETL application. As part of that course, you learn and practice the concept of using hash files as a work area or sandbox to help manipulate t...
by kcbland
Fri Apr 09, 2004 8:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Connect by clause of Oracle in DataStage
Replies: 5
Views: 2122

I don't know of any facility in DataStage to achieve flattening a hierarchy. This tends to be a relational operation. The best you'll achieve in DataStage using a single GUI job is: 1. Build a job with a fixed number of passes at the source data, with each pass handling a finding the parent of a chi...
by kcbland
Fri Apr 09, 2004 3:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Slow loading using DataStage with Teradata table as Target
Replies: 3
Views: 1716

It has nothing to do with DataStage's efficiency. Every database has an optimal loading solution for data warehouse environments: the bulk loader. Teradata is specifically a data warehouse database. It is less a relational database and more a specific creature of the data warehouse world. Redbrick a...
by kcbland
Fri Apr 09, 2004 1:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Slow loading using DataStage with Teradata table as Target
Replies: 3
Views: 1716

Have you ruled out using the bulkloading utilities available with Teradata (Multiload, etc)?
by kcbland
Thu Apr 08, 2004 2:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Accessing files on a remote server
Replies: 12
Views: 3427

Databases are sources and targets. As reference objects they don't do well for a host of reasons. I'm not talking about joins, I'm talking about references, a totally different concept. As sources and targets, obviously, they are fine. But, when you have to manipulate, massage, or enrich data then t...
by kcbland
Thu Apr 08, 2004 2:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error Column Storage exceeded
Replies: 2
Views: 2175

Check the Array Size field in the ODBC stage. Apparently, someone tried increasing this value to get a performance boost and didn't do the math to keep it in range.
by kcbland
Thu Apr 08, 2004 2:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Weird PX error when compiling!!!
Replies: 3
Views: 2728

You can search the forum for what phantom is. There's 3 different explanations: it's a directory, it's a background process, it's a stub program for running background processes. As for your troubles with compilation, the first check it a physical lock. If you don't see the job locked via the lock t...
by kcbland
Thu Apr 08, 2004 2:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dsjob exit codes
Replies: 6
Views: 1563

You're right, there's no error codes specifically for dsjob. I might suggest a peak at

http://www.dsxchange.com/viewtopic.php?t=85578

to get an idea of how I handled wrapping dsjob.
by kcbland
Thu Apr 08, 2004 2:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: LIST UV.ACCOUNT
Replies: 11
Views: 4792

Didn't mean for you to have dead air all day. I tried some options, but couldn't figure out a way to purely output the specific result from the command. Everything involved ksh commands to strip off the excess characters. The only other option would be a DS BASIC program that specifically does what ...
by kcbland
Thu Apr 08, 2004 2:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stage Variable Size Restrictions
Replies: 2
Views: 1081

There are restrictions on things like numeric precision and such. Can you please state your issue?
by kcbland
Thu Apr 08, 2004 12:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Accessing files on a remote server
Replies: 12
Views: 3427

Your comparison is Oracle references versus a .ds Merge or Lookup operation. In the words of Tom Kyte, you're comparing apples to toaster ovens. The whole problem with database reference lookup calls is the saturation issue on the database server side combined with repititive query combined with net...
by kcbland
Thu Apr 08, 2004 9:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Accessing files on a remote server
Replies: 12
Views: 3427

What I mean is that the .ds file is just a pointer to the underlying data files in the DataFiles directory. Do I have to FTP all the underlying files as well. Thanks. Raj A .ds file is a specific work file structure that PX uses. It has no ability to be used by anything other than PX, so why would ...
by kcbland
Thu Apr 08, 2004 7:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dsjob exit codes
Replies: 6
Views: 1563

Have you checked your Online Documentation? Under the Server job developer book, there is a whole chapter on the command line interface under the DataStage Development Kit. All error codes are explained.
by kcbland
Thu Apr 08, 2004 6:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Purging of DataStage Log from Unix Script
Replies: 14
Views: 12853

1. Yes

2. Yes
by kcbland
Wed Apr 07, 2004 8:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to implement typeII slowly changing dimensions in star
Replies: 4
Views: 1651

The implementation of a type 2 has data modeling components as well as ETL components. You must know how your data modeling for your type 2 is done so that you can write the appropriate ETL logic. The table typically contains a surrogate key, a natural key construct column, a starting effective date...