Search found 4992 matches

by kcbland
Tue Jul 25, 2006 2:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage on Windows 2003 and VM
Replies: 10
Views: 7798

Other than huge performance impact if you read/write a lot of files (sequential and hashed), which pretty much sums up ETL with DataStage. Sure a VM is cool if you're doing some lite development as a single person on a single machine, but if you're talking about running a production environment, don...
by kcbland
Tue Jul 25, 2006 1:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SCD Implementation
Replies: 2
Views: 558

I've been reading and answering a lot of your posts lately. When doing an SCD, you transform a source row and compare it to the most recent existing row in your database. If there is no row, you insert it. If there exists a recent current row and your new row is different , you: Type 1: Update curre...
by kcbland
Tue Jul 25, 2006 1:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Data Extraction
Replies: 7
Views: 1727

Why not put a row in the audit table for each source with a LastExtractDate of something like 1900-01-01? Then, the first time isn't an issue.
by kcbland
Tue Jul 25, 2006 12:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: parameters
Replies: 5
Views: 732

Sure, if you take the time. You have to parse your parameter file for values and pass them to the Job stages, but you'll probably think it's easier with a Batch job.
by kcbland
Tue Jul 25, 2006 12:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: parameters
Replies: 5
Views: 732

You can write a fancy .bat script, or use a perl script, or go as far as unix tools for Windoze, or a DS Batch job would work great.
by kcbland
Tue Jul 25, 2006 12:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to initialize plug-in:
Replies: 7
Views: 2242

Two things: 1. Test the environment of the engine by either creating a Batch job to CALL DSExecute("UNIX", "env", ScreenOutput, ReturnCode) CALL DSLogInfo("The environment shows :":ScreenOutput, "Msg") or whip up a Sequence w/Command stage to r...
by kcbland
Tue Jul 25, 2006 11:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Data Extraction
Replies: 7
Views: 1727

I would always as a matter of practice track all job stream executions just from a process metadata standpoint. Leverage that to track processing "to-from" dates allows you to do the things you're talking about doing. Trusting a source system to tell you is not the same as knowing it yourself.
by kcbland
Tue Jul 25, 2006 11:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSJOB Attributes
Replies: 8
Views: 1884

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

It's a shell script that runs dsjob. You should be able to get the idea how some of us are using it.
by kcbland
Tue Jul 25, 2006 10:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Accessing Universe/hashfiles using odbc stage in PX jobs
Replies: 4
Views: 1754

Universe is something else entirely. If you need to reference DataStage hashed files in a PX job, then you should consider using a container and a hashed file stage reading the hashed file and then move it into a dataset of some kind. Using the ODBC stage to read a hashed file will work if you simpl...
by kcbland
Tue Jul 25, 2006 10:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSJOB Attributes
Replies: 8
Views: 1884

You mean the command line program dsjob? It's fully documented in your DS manuals under the Start menu as well as having help just by typing in dsjob.
by kcbland
Tue Jul 25, 2006 10:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSJOB Attributes
Replies: 8
Views: 1884

Undocumented and proprietary information, but you can glean it by looking around on this forum.
by kcbland
Tue Jul 25, 2006 10:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: rejected data capture in seperate file
Replies: 1
Views: 468

Place a sequential file stage under your DB2 UDB API stage and right-click draw a reject link to the sequential file stage. See the error message?

Sucks, don't it?
by kcbland
Tue Jul 25, 2006 10:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Accessing Universe/hashfiles using odbc stage in PX jobs
Replies: 4
Views: 1754

You should NOT use ODBC to connect to Universe. If you understand Universe technology, you would know that support for multi-value attributes exists within the Universe UV/ODBC stage. Even then, your efforts are not sufficient for connecting to Universe. You will need to setup clean dictionaries wit...
by kcbland
Tue Jul 25, 2006 10:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Data Extraction
Replies: 7
Views: 1727

The surest and safest solution is to always track in an audit table the date of an extraction. This allows you to use this date in the next run, because it sets the point in time you will use for a forward looking query. Even though you run on the 1st of every month, it's safer this way because you ...