Search found 4605 matches

by kduke
Thu Dec 11, 2008 6:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generating Report automatically
Replies: 2
Views: 1502

I think it is in DsReport.bat. I does a dsjob command to get a list of jobs then loops thru the jobs and calls dsdesign.exe for each job. I think the option is /RP for the html report of a job design. Pretty simple.
by kduke
Wed Dec 10, 2008 8:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to capture performance statistics of a job
Replies: 7
Views: 2381

dsjob -report XML

is what you need. You need to give it project and job name. XML is optional.
by kduke
Wed Dec 10, 2008 12:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Read UniVerse tables through JobControl
Replies: 11
Views: 2162

There are lots of jobs in EtlStats which do this.
by kduke
Tue Dec 09, 2008 6:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Inserting information into DS_AUDIT
Replies: 9
Views: 2674

Mr. Pick is complaining about Pick style. OMG!
by kduke
Mon Dec 08, 2008 10:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generate Job Statistics as html report
Replies: 6
Views: 4246

Try this:

Code: Select all

%DsDesignerCmd% /H=%Host% /U=%User% /P=%Password% %Project% %%i /R /RP=%BackupDir%%DsxDate% /RX >> %LogFileName%
by kduke
Mon Dec 08, 2008 5:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Inserting information into DS_AUDIT
Replies: 9
Views: 2674

The key is 2 part on jobs. The second part is the job name. You would need to write an I-descriptor to create a job name field to join to DS_JOBS and then maybe to DS_JOBOBJECTS to get short description or long description. If you want to read this in DataStage then you need a few more tricks.
by kduke
Mon Dec 08, 2008 5:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Retrieving Identity Column values from DB2/UDB
Replies: 11
Views: 8732

We do this all the time and it works fine. On Insert we leave off the column so the database will assign the value.
by kduke
Fri Dec 05, 2008 7:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to use EtlStats recursively?
Replies: 3
Views: 1443

When you run DSJobReportDbDriver use ALL for JobName and it will get row counts on all jobs. You can also use a sequence name or a folder name. So if all your jobs are in one folder then it will get all row counts for all jobs in that folder.
by kduke
Wed Dec 03, 2008 5:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: HTML - Job RUn
Replies: 13
Views: 4280

You could remote execute dsjob.
by kduke
Wed Dec 03, 2008 5:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Export - Through batch script
Replies: 4
Views: 1683

There is a command called Dwn_ExecTCL.exe which can run this SQL statement from the client. So you could automate this whole process. This command is in Scripts.zip on my tips page. Do a search this has been covered in other posts.
by kduke
Fri Nov 21, 2008 3:04 pm
Forum: General
Topic: Copy column and derivation in Transformer stage to document
Replies: 6
Views: 5292

There is a batch file which generate reports all the jobs in a project on my tips page. Save you some time by downloading it.
by kduke
Fri Nov 21, 2008 3:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSGetJobInfo take too much time
Replies: 2
Views: 1111

That is why with EtlStats I run without waiting. So the next sequence kicks off while EtlStats us running the background. That is also why I do not like after job routines which gather this information. It adds a couple minutes to each job ran. Not good. Your overall run times will increase when you...
by kduke
Wed Nov 19, 2008 8:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Start Time and End Time
Replies: 1
Views: 1021

Download EtlStats from my Tips page. Do a search. Lots of posts about it.
by kduke
Wed Nov 19, 2008 8:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Size limit in DataStage?
Replies: 3
Views: 1280

You need to set your ulimit to unlimited.
by kduke
Mon Nov 17, 2008 8:12 am
Forum: General
Topic: Import data into MSAccess
Replies: 8
Views: 2143

Yes. If a query is based on one table then it is updatable.