Search found 4605 matches

by kduke
Wed Aug 30, 2006 5:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: job which track of the jobhistory, rowhistory,paramhistory
Replies: 18
Views: 4938

The relationship between the status number used in the API and what actually shows up in Director was hard for me to figure out. I needed it for DsWebMon a product I sell. I had to reproduce each status if possible to see what the verbage was in Director. Try to make a job fail in every way possible...
by kduke
Tue Aug 29, 2006 9:01 pm
Forum: Site/Forum
Topic: Congrats Craig on your 7000th accomplishment
Replies: 11
Views: 5534

Just maybe if I answer every post I can get 4,000 posts in.
by kduke
Tue Aug 29, 2006 7:21 pm
Forum: Site/Forum
Topic: Congrats Craig on your 7000th accomplishment
Replies: 11
Views: 5534

Geez, I did not get to enjoy my 3,000th long. Between you and Ken I look lazy.
by kduke
Tue Aug 29, 2006 7:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: job which track of the jobhistory, rowhistory,paramhistory
Replies: 18
Views: 4938

By the way your error message is telling you that it cannot create file
/u02/XML/etlExtractGXStudent.xml


The directory /u02/XML needs to exist ahead of time. This directory was changed because my version writes to KimD in the project directory.
by kduke
Tue Aug 29, 2006 7:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: job which track of the jobhistory, rowhistory,paramhistory
Replies: 18
Views: 4938

I posted EtlStats in June of 2004. Second version was posted in Feb of 2005.

JobStatus.txt was a text file I created.
by kduke
Tue Aug 29, 2006 7:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: $UserStatus and Dynamic Arrays
Replies: 5
Views: 1367

What is your problem? All the values printed. If you print a dynamic by sending it to the log then it prints one value per line. It looks just like this.
by kduke
Tue Aug 29, 2006 7:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Compare ETL
Replies: 6
Views: 1814

I would use Reporting Assistant and do like Vincent suggested. Most of what changes is in DSProperties. Do a select where all the fields are equal except JobName and PropValue not equal. Should get you a much more readable difference.

I think MetaStage has a job compare report built in.
by kduke
Tue Aug 29, 2006 6:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error while inserting record in hashed file, via a routine
Replies: 5
Views: 1015

They aren't touchy. That is why you can make them all varchar and ignore what type they really are.
by kduke
Mon Aug 28, 2006 4:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error while inserting record in hashed file, via a routine
Replies: 5
Views: 1015

I agree with Kris. I would create this column as a varchar and not a date. In fact I would create all the columns as varchar unless you need to sort this file.
by kduke
Mon Aug 28, 2006 4:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: space as key in Hash file
Replies: 5
Views: 1337

try it as char.
by kduke
Mon Aug 28, 2006 1:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: space as key in Hash file
Replies: 5
Views: 1337

Is there a trim() in your lookup.
by kduke
Mon Aug 28, 2006 1:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Which Stages or functionality use the most shared memory?
Replies: 11
Views: 6210

I would think when you load hashed files into memory that would consume more memory than most other stages.
by kduke
Mon Aug 28, 2006 12:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage connectivity with Oracle database
Replies: 2
Views: 1156

Not true. It can connect to anything in TNSNAMES. DataStage uses only one ORACLE_HOME at a time normally.
by kduke
Mon Aug 28, 2006 12:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error in DSAttachJob to status other than "Finished&quo
Replies: 11
Views: 6195

Just download EtlStats from the links below my signature. That is what it is designed to do. It updates several tables. Just change it to update a sequential file. You need to modify the job GenHtmlJobLog to get the log file records. The job DSJobReportDbDriver runs the job DSJobReportDb which is th...
by kduke
Sat Aug 26, 2006 8:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stop Datastage Job
Replies: 4
Views: 1947

Never ever kill with a -9. This can corrupt repository tables. use kill -15 or just kill. If you have a tightly wound loop then you may not be able to kill it. I do not see an option to stop a job otherwise. You can do it from a routine. If you knew enough about BASIC then you could create a TCL com...