Changeset 25324 for trunk/ippTools/share
- Timestamp:
- Sep 10, 2009, 12:52:50 PM (17 years ago)
- Location:
- trunk
- Files:
-
- 14 edited
- 9 copied
-
. (modified) (1 prop)
-
ippTools/share/Makefile.am (modified) (1 diff)
-
ippTools/share/camtool_pendingcleanupexp.sql (modified) (1 diff)
-
ippTools/share/camtool_pendingcleanuprun.sql (modified) (1 diff)
-
ippTools/share/dettool_donecleanup_normalizedexp.sql (copied) (copied from branches/czw_branch/cleanup/ippTools/share/dettool_donecleanup_normalizedexp.sql )
-
ippTools/share/dettool_donecleanup_normalizedimfile.sql (copied) (copied from branches/czw_branch/cleanup/ippTools/share/dettool_donecleanup_normalizedimfile.sql )
-
ippTools/share/dettool_donecleanup_normalizedstat.sql (copied) (copied from branches/czw_branch/cleanup/ippTools/share/dettool_donecleanup_normalizedstat.sql )
-
ippTools/share/dettool_donecleanup_processedexp.sql (copied) (copied from branches/czw_branch/cleanup/ippTools/share/dettool_donecleanup_processedexp.sql )
-
ippTools/share/dettool_donecleanup_processedimfile.sql (copied) (copied from branches/czw_branch/cleanup/ippTools/share/dettool_donecleanup_processedimfile.sql )
-
ippTools/share/dettool_donecleanup_residexp.sql (copied) (copied from branches/czw_branch/cleanup/ippTools/share/dettool_donecleanup_residexp.sql )
-
ippTools/share/dettool_donecleanup_residimfile.sql (copied) (copied from branches/czw_branch/cleanup/ippTools/share/dettool_donecleanup_residimfile.sql )
-
ippTools/share/dettool_donecleanup_stacked.sql (copied) (copied from branches/czw_branch/cleanup/ippTools/share/dettool_donecleanup_stacked.sql )
-
ippTools/share/dettool_pendingcleanup_detrunsummary.sql (copied) (copied from branches/czw_branch/cleanup/ippTools/share/dettool_pendingcleanup_detrunsummary.sql )
-
ippTools/share/dettool_pendingcleanup_normalizedexp.sql (modified) (1 diff)
-
ippTools/share/dettool_pendingcleanup_normalizedimfile.sql (modified) (1 diff)
-
ippTools/share/dettool_pendingcleanup_normalizedstat.sql (modified) (1 diff)
-
ippTools/share/dettool_pendingcleanup_processedexp.sql (modified) (1 diff)
-
ippTools/share/dettool_pendingcleanup_processedimfile.sql (modified) (1 diff)
-
ippTools/share/dettool_pendingcleanup_residexp.sql (modified) (1 diff)
-
ippTools/share/dettool_pendingcleanup_residimfile.sql (modified) (1 diff)
-
ippTools/share/dettool_pendingcleanup_stacked.sql (modified) (1 diff)
-
ippTools/share/faketool_pendingcleanupimfile.sql (modified) (1 diff)
-
ippTools/share/faketool_pendingcleanuprun.sql (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/czw_branch/cleanup merged: 24713,24743,24785,24835,24902,24913,24951-24952,24972
- Property svn:mergeinfo changed
-
trunk/ippTools/share/Makefile.am
r25299 r25324 47 47 dettool_normalizedstat.sql \ 48 48 dettool_pending.sql \ 49 dettool_pendingcleanup_detrunsummary.sql \ 49 50 dettool_pendingcleanup_normalizedexp.sql \ 50 51 dettool_pendingcleanup_normalizedimfile.sql \ -
trunk/ippTools/share/camtool_pendingcleanupexp.sql
r19528 r25324 13 13 USING(cam_id) 14 14 WHERE 15 (camRun.state = 'goto_cleaned' OR camRun.state = 'goto_purged' )15 (camRun.state = 'goto_cleaned' OR camRun.state = 'goto_purged' OR camRun.state = 'goto_scrubbed') 16 16 -
trunk/ippTools/share/camtool_pendingcleanuprun.sql
r19528 r25324 9 9 USING (exp_id) 10 10 WHERE 11 (camRun.state = 'goto_cleaned' OR camRun.state = 'goto_purged' )11 (camRun.state = 'goto_cleaned' OR camRun.state = 'goto_purged' OR camRun.state = 'goto_scrubbed') -
trunk/ippTools/share/dettool_pendingcleanup_normalizedexp.sql
r19092 r25324 1 1 SELECT 2 2 detNormalizedExp.*, 3 detRunSummary.data_state3 rawExp.camera 4 4 FROM detRunSummary 5 5 JOIN detNormalizedExp 6 6 USING(det_id,iteration) 7 JOIN detInputExp 8 USING(det_id,iteration) 9 JOIN rawExp 10 USING(exp_id) 7 11 WHERE 8 detRunSummary.data_state = 'goto_cleaned' 9 AND detNormalizedExp.data_state = 'full' 12 ((detRunSummary.data_state = 'goto_cleaned' 13 AND detNormalizedExp.data_state = 'full') 14 OR (detRunSummary.data_state = 'goto_scrubbed' 15 AND detNormalizedExp.data_state = 'full') 16 OR (detRunSummary.data_state = 'goto_purged' 17 AND detNormalizedExp.data_state = 'full') 18 OR detNormalizedExp.data_state = 'goto_cleaned' 19 OR detNormalizedExp.data_state = 'goto_scrubbed' 20 OR detNormalizedExp.data_state = 'goto_purged') 21 -
trunk/ippTools/share/dettool_pendingcleanup_normalizedimfile.sql
r25299 r25324 1 1 SELECT DISTINCT 2 2 detNormalizedImfile.*, 3 detRunSummary.data_state3 rawExp.camera 4 4 FROM detRunSummary 5 5 JOIN detNormalizedImfile 6 6 USING(det_id,iteration) 7 JOIN detInputExp 8 USING(det_id,iteration) 9 JOIN rawExp 10 USING(exp_id) 7 11 WHERE 8 detRunSummary.data_state = 'goto_cleaned' 9 AND detNormalizedImfile.data_state = 'full' 12 ((detRunSummary.data_state = 'goto_cleaned' 13 AND detNormalizedImfile.data_state = 'full') 14 OR (detRunSummary.data_state = 'goto_scrubbed' 15 AND detNormalizedImfile.data_state = 'full') 16 OR (detRunSummary.data_state = 'goto_purged' 17 AND detNormalizedImfile.data_state = 'full') 18 OR detNormalizedImfile.data_state = 'goto_cleaned' 19 OR detNormalizedImfile.data_state = 'goto_scrubbed' 20 OR detNormalizedImfile.data_state = 'goto_purged') 21 -
trunk/ippTools/share/dettool_pendingcleanup_normalizedstat.sql
r19092 r25324 1 SELECT 1 SELECT DISTINCT 2 2 detNormalizedStatImfile.*, 3 detRunSummary.data_state3 rawExp.camera 4 4 FROM detRunSummary 5 5 JOIN detNormalizedStatImfile 6 6 USING(det_id,iteration) 7 JOIN detInputExp 8 USING(det_id,iteration) 9 JOIN rawExp 10 USING(exp_id) 7 11 WHERE 8 detRunSummary.data_state = 'goto_cleaned' 9 AND detNormalizedStatImfile.data_state = 'full' 12 ((detRunSummary.data_state = 'goto_cleaned' 13 AND detNormalizedStatImfile.data_state = 'full') 14 OR (detRunSummary.data_state = 'goto_scrubbed' 15 AND detNormalizedStatImfile.data_state = 'full') 16 OR (detRunSummary.data_state = 'goto_purged' 17 AND detNormalizedStatImfile.data_state = 'full') 18 OR detNormalizedStatImfile.data_state = 'goto_cleaned' 19 OR detNormalizedStatImfile.data_state = 'goto_scrubbed' 20 OR detNormalizedStatImfile.data_state = 'goto_purged') 21 -
trunk/ippTools/share/dettool_pendingcleanup_processedexp.sql
r19092 r25324 2 2 SELECT 3 3 detProcessedExp.*, 4 detRunSummary.data_state4 rawExp.camera 5 5 FROM detRunSummary 6 6 JOIN detProcessedExp 7 7 USING(det_id) 8 JOIN rawExp 9 USING(exp_id) 8 10 WHERE 9 detRunSummary.data_state = 'goto_cleaned' 10 AND detProcessedExp.data_state = 'full' 11 ((detRunSummary.data_state = 'goto_cleaned' 12 AND detProcessedExp.data_state = 'full') 13 OR (detRunSummary.data_state = 'goto_scrubbed' 14 AND detProcessedExp.data_state = 'full') 15 OR (detRunSummary.data_state = 'goto_purged' 16 AND detProcessedExp.data_state = 'full') 17 OR detProcessedExp.data_state = 'goto_cleaned' 18 OR detProcessedExp.data_state = 'goto_scrubbed' 19 OR detProcessedExp.data_state = 'goto_purged') -
trunk/ippTools/share/dettool_pendingcleanup_processedimfile.sql
r19092 r25324 1 -- need to restrict to a single detRunSummary (require all to say 'cleaned'?)2 1 SELECT 3 2 detProcessedImfile.*, 4 detRunSummary.data_state3 rawExp.camera 5 4 FROM detRunSummary 6 5 JOIN detProcessedImfile 7 6 USING(det_id) 7 JOIN detInputExp 8 USING(det_id,iteration,exp_id) 9 JOIN rawExp 10 USING(exp_id) 8 11 WHERE 9 detRunSummary.data_state = 'goto_cleaned' 10 AND detProcessedImfile.data_state = 'full' 12 (detProcessedImfile.data_state = 'goto_cleaned' 13 OR detProcessedImfile.data_state = 'goto_scrubbed' 14 OR detProcessedImfile.data_state = 'goto_purged') 15 -
trunk/ippTools/share/dettool_pendingcleanup_residexp.sql
r19092 r25324 1 1 SELECT 2 2 detResidExp.*, 3 detRunSummary.data_state3 rawExp.camera 4 4 FROM detRunSummary 5 5 JOIN detResidExp 6 6 USING(det_id,iteration) 7 JOIN detInputExp 8 USING(det_id,iteration,exp_id) 9 JOIN rawExp 10 USING(exp_id) 7 11 WHERE 8 detRunSummary.data_state = 'goto_cleaned' 9 AND detResidExp.data_state = 'full' 12 ((detRunSummary.data_state = 'goto_cleaned' 13 AND detResidExp.data_state = 'full') 14 OR (detRunSummary.data_state = 'goto_scrubbed' 15 AND detResidExp.data_state = 'full') 16 OR (detRunSummary.data_state = 'goto_purged' 17 AND detResidExp.data_state = 'full') 18 OR detResidExp.data_state = 'goto_cleaned' 19 OR detResidExp.data_state = 'goto_scrubbed' 20 OR detResidExp.data_state = 'goto_purged') -
trunk/ippTools/share/dettool_pendingcleanup_residimfile.sql
r19092 r25324 1 1 SELECT 2 2 detResidImfile.*, 3 detRunSummary.data_state3 rawExp.camera 4 4 FROM detRunSummary 5 5 JOIN detResidImfile 6 6 USING(det_id,iteration) 7 JOIN detInputExp 8 USING(det_id,iteration,exp_id) 9 JOIN rawExp 10 USING(exp_id) 7 11 WHERE 8 detRunSummary.data_state = 'goto_cleaned' 9 AND detResidImfile.data_state = 'full' 12 ((detRunSummary.data_state = 'goto_cleaned' 13 AND detResidImfile.data_state = 'full') 14 OR (detRunSummary.data_state = 'goto_scrubbed' 15 AND detResidImfile.data_state = 'full') 16 OR (detRunSummary.data_state = 'goto_purged' 17 AND detResidImfile.data_state = 'full') 18 OR detResidImfile.data_state = 'goto_cleaned' 19 OR detResidImfile.data_state = 'goto_scrubbed' 20 OR detResidImfile.data_state = 'goto_purged') 21 22 -
trunk/ippTools/share/dettool_pendingcleanup_stacked.sql
r25299 r25324 1 1 SELECT DISTINCT 2 2 detStackedImfile.*, 3 detRunSummary.data_state3 rawExp.camera 4 4 FROM detRunSummary 5 5 JOIN detStackedImfile 6 USING(det_id,iteration) 6 USING(det_id,iteration) 7 JOIN detInputExp 8 USING(det_id,iteration) 9 JOIN rawExp 10 USING(exp_id) 7 11 WHERE 8 detRunSummary.data_state = 'goto_cleaned' 9 AND detStackedImfile.data_state = 'full' 12 ((detRunSummary.data_state = 'goto_cleaned' 13 AND detStackedImfile.data_state = 'full') 14 OR (detRunSummary.data_state = 'goto_scrubbed' 15 AND detStackedImfile.data_state = 'full') 16 OR (detRunSummary.data_state = 'goto_purged' 17 AND detStackedImfile.data_state = 'full') 18 OR detStackedImfile.data_state = 'goto_cleaned' 19 OR detStackedImfile.data_state = 'goto_scrubbed' 20 OR detStackedImfile.data_state = 'goto_purged') -
trunk/ippTools/share/faketool_pendingcleanupimfile.sql
r19092 r25324 13 13 USING(fake_id) 14 14 WHERE 15 fakeRun.state = 'goto_cleaned' 15 ((fakeRun.state = 'goto_cleaned' AND fakeProcessedImfile.data_state = 'full') 16 OR 17 (fakeRun.state = 'goto_scrubbed' AND fakeProcessedImfile.data_state = 'full') 18 OR 19 (fakeRun.state = 'goto_purged' AND fakeProcessedImfile.data_state != 'purged')) -
trunk/ippTools/share/faketool_pendingcleanuprun.sql
r19092 r25324 11 11 USING (exp_id) 12 12 WHERE 13 fakeRun.state = 'goto_cleaned' 13 (fakeRun.state = 'goto_cleaned' OR fakeRun.state = 'goto_scrubbed' OR fakeRun.state = 'goto_purged') 14
Note:
See TracChangeset
for help on using the changeset viewer.
