Search found 6 matches

by Rangs
Sun Oct 08, 2006 6:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Find out the value for a parameter by Job
Replies: 2
Views: 1564

Find out the value for a parameter by Job

In my datastage project the parameter called ErrorNumber is common across all Jobs. This parameter carries a defualt value for each job. Is there a way of querying the DataStage repository to list all Jobs with corresponding deafult value for this parameter ?? Please let me know how and what query t...
by Rangs
Sun Oct 08, 2006 6:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Table usage analysis
Replies: 4
Views: 2321

Table usage analysis

I have got around 800 DataSTage jobs in my project. In those Jobs are many DB2 stages. In those DB2 stages somewhere in the Input SQL or in the table name property the table 'DI_DIMENSION' is specified. Is there a way to list all the Jobs that contain the table. There is no table definition defined ...
by Rangs
Thu Sep 21, 2006 10:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Extract Job Name and Short Description for all Jobs
Replies: 4
Views: 2174

Extract Job Name and Short Description for all Jobs

Can someone please suggest how to extract all Job Names and its corresponding short description into a text file using a DataStage Job. Probably by querying the repository. What Stage to use and whats the SQL ??. What privilige is required to do such a task ?? What connection parameters need to be u...
by Rangs
Fri Dec 09, 2005 3:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Inter Process Row Buffering
Replies: 1
Views: 994

Inter Process Row Buffering

I have a windows 2000 server with more than one processor. Now turning inter-processsor row buffering on can there be true utilisation of multi-processors ie. multiple processes running parallely ??
by Rangs
Tue Oct 18, 2005 10:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to send an e-mail notification after 5 rows are rejected
Replies: 3
Views: 2209

Use DSSendMail routine

I have done this.. D/S has a built in routine called DSSendMail. You can call this from the Derivation or constraints inside the transformer. Eg From Derivation If @OUTROWNUM > 5 Then DSSendMail(StageVar) Else InputLink.MappingCol StageVar is /n seperated parameters consisting of your exchange serve...
by Rangs
Tue Oct 18, 2005 7:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Checkpoint Restart Capability
Replies: 10
Views: 6420

Checkpoint Restart Capability

Guys Many of our jobs were originally written in DataStage 5.2. Now we have moved to DataStage 7.1r2. Whenever a Job sequencer fails, we have to go through the tedious process of running the remaining jobs manually or have written a script which reads from a file as to what remaining jobs to run. In...