Search found 4605 matches

by kduke
Tue Mar 13, 2007 10:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Slowly changing Dimensions
Replies: 20
Views: 4648

For the record, some of my favorite posts are Vincent's. I think his blogs are great too. I like to read them over once and a while just to see how he explained something. Ken, your long answers leave nothing undone. Your documentation is first class as well. Don't forget Michael Hester or Andy Sorr...
by kduke
Tue Mar 13, 2007 10:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Slowly changing Dimensions
Replies: 20
Views: 4648

I do have an example of where I broke this rule. We had a customer which rented movies. They had an application which purchased these movies based on a statistical model of previous purchases for all their stores. We built a datamart which reported on these purchases. They wanted a real-time version...
by kduke
Tue Mar 13, 2007 10:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Slowly changing Dimensions
Replies: 20
Views: 4648

I agree. It is not about quantity though. Back to the post. Your ETL should be clean, easy to follow, in the words of Ray and Arnd write it so the next developer can understand what you built. Hiding ETL in triggers and stored procedures on the insert or updates of targets is not easy to follow. I d...
by kduke
Tue Mar 13, 2007 8:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Slowly changing Dimensions
Replies: 20
Views: 4648

I have to agree with Ken here. Trigger is a trick. It is not solid ETL. I hate to follow developers which ETL lies outside of DataStage in stored procedures, triggers, shell scripts or whatever. I think indexes are very valid to improve performance especially in staging tables. Not a problem there. ...
by kduke
Fri Mar 09, 2007 7:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: auto clear log
Replies: 17
Views: 3770

Ken Bland posted the code to set all of the purge settings for all jobs. This code is to clear mutiple instances on a single job.
by kduke
Tue Mar 06, 2007 7:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: %s warning
Replies: 3
Views: 791

If you look in the log file they do not store job name. They create place holders for it with %s and I think %1 and %2. I think that is so that you can rename the job easily.
by kduke
Tue Mar 06, 2007 6:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to update the source table in the same job?
Replies: 17
Views: 4907

On the source SQL. It should be an option. Read help on the choices. You will understand why.
by kduke
Tue Mar 06, 2007 6:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help on dsexport
Replies: 40
Views: 15946

That is correct. You need to put a full path on the dsx to put it somewhere other than the current directory.

One day only on the less colorful logo. Okay?
by kduke
Mon Mar 05, 2007 9:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage v752s01 Import error (importing from command line)
Replies: 3
Views: 2856

SET DSImportCmd=C:\Progra~1\Ascential\DataStage7.5.1\dsimport.exe for /F "tokens=1" %%i in (%DsxList%) do ( ECHO Importing %%i to Project: %Project% on Host: %Host% echo %DSImportCmd% /H=%Host% /U=%User% /P=%Password% %Project% %ProjectDir%\%%i >> %LogFileName% %DSImportCmd% /...
by kduke
Mon Mar 05, 2007 9:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help on dsexport
Replies: 40
Views: 15946

Here is the second one.

Code: Select all

    SET DSExportCmd=C:\Progra~1\Ascential\DataStage7.5.1\dscmdexport.exe


Code: Select all

%DSExportCmd% /H=%Host% /U=%User% /P=%Password% %%i %BackupDir%%DsxDate%\%Host%_%%i.dsx


This does a whole project backup.
by kduke
Mon Mar 05, 2007 9:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help on dsexport
Replies: 40
Views: 15946

Might need this line.

Code: Select all

SET DSExportCmd=C:\Progra~1\Ascential\DataStage7.5.1\DsExport.exe
by kduke
Mon Mar 05, 2007 9:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help on dsexport
Replies: 40
Views: 15946

Aim to please. for /F "tokens=1" %%i in (%JobList%) do ( ECHO Exporting %%i to Project: %Project% on Host: %Host% echo "%DSExportCmd% /H=%Host% /U=%User% /P=%Password% /JOB=%%i %Project% %%i.dsx" >> %LogFileName% %DSExportCmd% /H=%Host% /U=%User% /P=%Password% /JOB=%%...
by kduke
Mon Mar 05, 2007 8:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to update the source table in the same job?
Replies: 17
Views: 4907

I think doing this in one job is fine.
by kduke
Mon Mar 05, 2007 7:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help on dsexport
Replies: 40
Views: 15946

You got to be kidding.
by kduke
Sun Mar 04, 2007 11:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help on dsexport
Replies: 40
Views: 15946

Happy?