Search found 4605 matches
- Tue Dec 07, 2004 7:00 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: To locate Hash file or any job directly from Administrator
- Replies: 5
- Views: 1787
- Mon Dec 06, 2004 3:10 pm
- Forum: Site/Forum
- Topic: phpBB critical updates
- Replies: 3
- Views: 3144
- Mon Dec 06, 2004 2:41 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DSJobReport Output
- Replies: 10
- Views: 3374
- Mon Dec 06, 2004 6:31 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DSJobReport Output
- Replies: 10
- Views: 3374
I posted a series of jobs on ADN and on my tips page which parse the XML version of these reports into either hash files or Oracle tables. You can download EtlStats.zip and modify these jobs to do whatever you want with this data. There are several posts on how to use these jobs. Do a search to see ...
- Fri Dec 03, 2004 7:43 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Start and End time of a job
- Replies: 12
- Views: 3831
You will need to create the tables. The scripts are there. You need to run BuildJobStatusHash. This builds a hahs file used by DSJobReportDb. The controlling job is DSJobReportDbDriver. If you put All in the Category parameter then it will load row counts for all jobs. To get row counts at the end o...
- Fri Dec 03, 2004 12:08 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Start and End time of a job
- Replies: 12
- Views: 3831
We run this at the end of each sequence. It posts start and end times, duration in seconds, rows and rows per second. It also posts parameter values. All of these can be used to measure performance over time. It also allows you to predict when all your sequences will finish. Soon I will have bytes p...
- Thu Dec 02, 2004 3:29 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How can i change value of job parameter at run time.
- Replies: 11
- Views: 3947
- Thu Dec 02, 2004 2:10 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How can i change value of job parameter at run time.
- Replies: 11
- Views: 3947
I still do not like this method. I think it is cleaner to leave the result in a hash file and use the routine posted to change the parameter value to the one written to the hash file. I can do one or a hundred parameter values this way. All I need is a temporary holding place like a hash file or a s...
- Thu Dec 02, 2004 6:51 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Start and End time of a job
- Replies: 12
- Views: 3831
You could download EtlStats.zip from ADN or my tips page. It posts all the row counts to tables in the warehouse but you could easily write these to a text file. You get all the jobs and create table statements. It posts link names and row counts. Very simple to setup. It will also do this for all j...
- Thu Dec 02, 2004 6:46 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: capture error log
- Replies: 3
- Views: 980
I like the SQL solutions. I do not like the API solutions for logs and row counts. Row counts are easiest with dsjob -report. IMHO. The API works best for starting and stopping jobs. I just wrote a routine which will change these SQL statements into html. I will post it soon. I want to tie this to a...
- Tue Nov 30, 2004 6:57 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Job Sequencer Input/Output
- Replies: 2
- Views: 1270
- Tue Nov 30, 2004 6:56 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Job Sequencer
- Replies: 10
- Views: 4152
- Tue Nov 30, 2004 6:49 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: forwarding invocationid's to lower level-jobs
- Replies: 5
- Views: 1084
Thanks for the good words but I am not sure how this is working now. If this is in a batch job or a sequence then it may be a little different. Usually I have a parameter which reflects the invocation id either exactly or logically. When I get row stats then the main invocation id is the job sequenc...
- Mon Nov 29, 2004 3:35 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: HashFile Look up
- Replies: 6
- Views: 1363
I would put everything you need to check into a hash file. Make every column a key field. The only field that is not a part of the key is the surrogate key. We call this a Xref hash file. Hash files are normally rebuilt every run. We select the max(surrogate_key) using a UV stage from this hash file...
- Mon Nov 29, 2004 3:32 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: To find jobs which are using a Particular Table
- Replies: 6
- Views: 1762
Look at http://www.dsxchange.com/viewtopic.php?t=89892 as well.