Search found 4605 matches
- Fri Dec 10, 2004 12:20 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to know whether a DS job is referenced by sequencer ?
- Replies: 7
- Views: 1816
- Fri Dec 10, 2004 6:20 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Reports for row counts using EtlStats.zip
- Replies: 2
- Views: 919
- Fri Dec 10, 2004 6:18 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Reports for row counts using EtlStats.zip
- Replies: 2
- Views: 919
Reports for row counts using EtlStats.zip
If you downloaded EtlStats.zip then here is query to get the last run's rows per second. select LAST_RUN.PROJECT_NAME, LAST_RUN.JOB_NAME, LAST_RUN.LINK_NAME, LAST_RUN.START_TS, LAST_RUN.END_TS, LAST_RUN.ELAPSED_TIME, LAST_RUN.ELAPSED_SEC, LAST_RUN.ROW_COUNT, LAST_RUN.ROWS_PER_SEC from ETL_ROW_HIST L...
- Fri Dec 10, 2004 6:14 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DSLinkInfo and Performance Statistics
- Replies: 6
- Views: 1841
- Thu Dec 09, 2004 3:46 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Using hash files instead of UV tables for multirow
- Replies: 13
- Views: 16020
Sure it does. LOCATE is smart. If you LOCATE in Rec then uses @FM. LOCATE in Rec<2> will look for @VM as separators. LOCATE in Rec<2,3> will use @SVM as a separator. The learning curve for these little details is steep. Ken, Ray and others have used Universe and other similar databases for years. Mo...
- Thu Dec 09, 2004 2:09 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Last Error
- Replies: 16
- Views: 2092
If it does not make a difference then leave them commented out. The SUBR() subroutine sometimes needs these varaibles set. I did it out of habit. Currently this routine selects the whole log file. You need to select the records where @ID is greater than or equal to '//JOB.STARTED.NO'. Add this line:...
- Thu Dec 09, 2004 8:49 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Reset job
- Replies: 2
- Views: 531
- Wed Dec 08, 2004 5:22 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Multi valued Column in Hash File
- Replies: 20
- Views: 12482
I think it is valid to do some of this in PLSQL if that speeds things up. I think doing it in a BEFORE SQL may make it look like it is all done in DataStage. I think most of us have used temp tables created with SQL to get around some performance issue. Maybe even Ray has used this trick. I do not l...
- Wed Dec 08, 2004 5:07 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Last Error
- Replies: 16
- Views: 2092
There are some dictionary items which require @ID, @RECORD to be set. You could probably do this better in SQL. The last run has an id greater or equal to the one stored in '//JOB.STARTED.NO'. So you can modify this routine or here is some SQL. select TIMESTAMP, SEVERITY, FULL.TEXT from RT_LOG111 wh...
- Wed Dec 08, 2004 12:24 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Parameters in a Sequence
- Replies: 2
- Views: 1525
- Wed Dec 08, 2004 12:22 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Multiple Instances and record looping
- Replies: 3
- Views: 657
I basically do this in my EtlStats driver job. You feed the sequence name to the driver. It looks up the dependent jobs in that sequence. It feeds these to the job that gets row counts for each job in that sequence. The job name is also the instance id. In this scenario it does make sense otherwise ...
- Wed Dec 08, 2004 12:17 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Using result from BEFORE-SQL in Input SQL
- Replies: 5
- Views: 1443
- Wed Dec 08, 2004 12:14 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Abort the job in Datstage
- Replies: 6
- Views: 2420
- Tue Dec 07, 2004 7:30 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Parameters from File Routine. Password Encrytion Issues
- Replies: 6
- Views: 3311
I have seen a strikingly similar routine at this post I checked this out and Peter Lai wrote these routines. If Ascential is giving out routines written by Peter then they should give him credit. I am not sure what you are looking at but the parameter name is stored in STAGECOM.JOB.CONFIG<CONTAINER...
- Tue Dec 07, 2004 5:31 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Last Error
- Replies: 16
- Views: 2092