Search found 4605 matches

by kduke
Tue Oct 21, 2008 7:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Passing multiple values to the 'SELECT' query in ODBC stage
Replies: 8
Views: 1944

This code is a part of EtlStats. There is a job included which will take any SQL statement and turn it into html document and email it as an attachment. Kind of poor man's reporting tool. There are bunch of reports which included in folder called SqlScripts. They have :1, :2 as parameters. One of th...
by kduke
Tue Oct 21, 2008 12:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: clearing log files at one shot
Replies: 14
Views: 5754

There was one on the ADN. It would take a while and each each job's log file. It might be on my tips page. If not then I could post it.
by kduke
Mon Oct 20, 2008 11:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Automate exporting of jobs along with the routines (weekly)
Replies: 5
Views: 1763

Tips and Tricks page call DataStageBackup.bat.
by kduke
Thu Oct 16, 2008 10:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Automate metadata creation
Replies: 5
Views: 1541

Next time I would use XML.
by kduke
Wed Oct 15, 2008 12:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Disaster Recovery
Replies: 2
Views: 1157

Unless your server name is the same name as the one you are replacing then you may have issues. The server name is buried down in these files. You need to reinstall DataStage. You should design your DR recovery around full export and imports. SDK sequences should have a job which can rebuild them. I...
by kduke
Wed Oct 15, 2008 12:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: No output from Hashed file into transformer
Replies: 7
Views: 1566

Besides you cannot use an ODBC stage to read a hashed file. You need a UV stage.
by kduke
Wed Oct 15, 2008 12:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: No output from Hashed file into transformer
Replies: 7
Views: 1566

You have $ in your hashed file name? I would rename it. Not sure if " is the proper quote character for a hashed file. Remove the $ and " should not be needed. I think your issue is in the name.
by kduke
Wed Oct 15, 2008 12:01 pm
Forum: General
Topic: ETLSTATS - DSJobReportDb Logs
Replies: 3
Views: 1999

I don't think that is possible. Never heard of the logs making any difference in the jobs performance except when it writes a warning on every record. The XML files are created in the before job command which runs dsjob. It has to either not write the XML files or write them to the wrong place. Mayb...
by kduke
Tue Oct 14, 2008 6:26 pm
Forum: General
Topic: ETLSTATS - DSJobReportDb Logs
Replies: 3
Views: 1999

I think your parameter values are different for each run. That is where I would start to look.
by kduke
Tue Oct 14, 2008 6:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Control de max # of Job related processes running on windows
Replies: 12
Views: 2964

We were trying to calculate a weight based on amount RAM used by each job. We were paging so we wanted to run just enough jobs not to page.
by kduke
Tue Oct 14, 2008 11:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Control de max # of Job related processes running on windows
Replies: 12
Views: 2964

Just to figure out what processes are tied to one job is very difficult. I tried to do this in UNIX with a shell script. It is very hard. Some processes have the job name in them. Not all do though. I would bet this is lots harder to do in Windows.
by kduke
Mon Oct 13, 2008 8:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Confirmation
Replies: 4
Views: 1262

There is only one type of sequence job. It runs both server jobs and parallel jobs. A sequence job just happens to be a server job. You can mix and match server and parallel jobs. You also run server or parallel jobs from command line with dsjob. I see no big deal. Once a job is started it makes no ...
by kduke
Sat Oct 11, 2008 11:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Confirmation
Replies: 4
Views: 1262

A sequence job can run parallel jobs. No problem. It does not effect the parallel execution in any way. A sequence job is to run jobs in a specific order whether they are parallel or server jobs.
by kduke
Thu Oct 09, 2008 2:25 pm
Forum: General
Topic: Entry Criteria For Datastage Consultants
Replies: 7
Views: 2205

There are many facets to being a good DataStage developer. There are architect roles in some sites to not only move data around but design target tables. There are DBA roles in connecting and tuning databases and SQL. There are admin roles in installing and maintaining DataStage itself. Good knowled...
by kduke
Wed Oct 08, 2008 12:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Export several jobs to one file using command line
Replies: 5
Views: 1978

Each dsx file has a header. This would work if you stripped the header off. Not sure if it can ignore multiple headers in one file. Try it. Let us know.