Changeset 18644
- Timestamp:
- Jul 21, 2008, 2:14:39 PM (18 years ago)
- Location:
- branches/eam_branch_20080719/ippTools/share
- Files:
-
- 22 edited
-
camtool_find_pendingexp.sql (modified) (1 diff)
-
camtool_reset_faulted_runs.sql (modified) (1 diff)
-
difftool_inputskyfile.sql (modified) (2 diffs)
-
difftool_queue.sql (modified) (1 diff)
-
difftool_skyfile.sql (modified) (1 diff)
-
difftool_todiffskyfile.sql (modified) (1 diff)
-
faketool_completely_processed_exp.sql (modified) (1 diff)
-
faketool_find_camrun.sql (modified) (1 diff)
-
faketool_find_pendingexp.sql (modified) (1 diff)
-
faketool_queue_cam_id.sql (modified) (1 diff)
-
stacktool_definebyquery_part1.sql (modified) (1 diff)
-
stacktool_definebyquery_test.sql (modified) (1 diff)
-
stacktool_find_complete_warps.sql (modified) (1 diff)
-
stacktool_inputskyfile.sql (modified) (1 diff)
-
stacktool_sumskyfile.sql (modified) (1 diff)
-
stacktool_tosum.sql (modified) (1 diff)
-
warptool_exp.sql (modified) (1 diff)
-
warptool_imfile.sql (modified) (1 diff)
-
warptool_scmap.sql (modified) (1 diff)
-
warptool_tooverlap.sql (modified) (1 diff)
-
warptool_towarped.sql (modified) (1 diff)
-
warptool_warped.sql (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branch_20080719/ippTools/share/camtool_find_pendingexp.sql
r18622 r18644 25 25 WHERE 26 26 chipRun.state = 'full' 27 AND camRun.state = ' run'27 AND camRun.state = 'new' 28 28 AND camMask.label IS NULL 29 29 AND camProcessedExp.cam_id IS NULL -
branches/eam_branch_20080719/ippTools/share/camtool_reset_faulted_runs.sql
r17216 r18644 1 1 UPDATE camRun, camProcessedExp, chipRun, rawExp 2 SET camRun.state = ' run'2 SET camRun.state = 'new' 3 3 WHERE 4 4 camRun.cam_id = camProcessedExp.cam_id -
branches/eam_branch_20080719/ippTools/share/difftool_inputskyfile.sql
r18622 r18644 30 30 ON chipRun.exp_id = rawExp.exp_id 31 31 WHERE 32 diffRun.state = ' run'33 AND warpRun.state = ' stop'34 AND fakeRun.state = ' stop'35 AND camRun.state = ' stop'32 diffRun.state = 'new' 33 AND warpRun.state = 'full' 34 AND fakeRun.state = 'full' 35 AND camRun.state = 'full' 36 36 AND chipRun.state = 'full' 37 37 UNION … … 66 66 ON chipRun.exp_id = rawExp.exp_id 67 67 WHERE 68 diffRun.state = ' run'69 AND warpRun.state = ' stop'70 AND fakeRun.state = ' stop'71 AND camRun.state = ' stop'68 diffRun.state = 'new' 69 AND warpRun.state = 'full' 70 AND fakeRun.state = 'full' 71 AND camRun.state = 'full' 72 72 AND chipRun.state = 'full' 73 73 ) as Foo -
branches/eam_branch_20080719/ippTools/share/difftool_queue.sql
r18622 r18644 18 18 stackSumSkyfile.fault = 0 19 19 AND warpSkyfile.fault = 0 20 AND stackRun.state = ' stop'20 AND stackRun.state = 'full' 21 21 AND diffInputSkyfile.stack_id IS NULL 22 22 AND diffInputSkyfile.warp_id IS NULL -
branches/eam_branch_20080719/ippTools/share/difftool_skyfile.sql
r12262 r18644 7 7 USING(diff_id) 8 8 WHERE 9 diffRun.state = ' run'9 diffRun.state = 'new' 10 10 -
branches/eam_branch_20080719/ippTools/share/difftool_todiffskyfile.sql
r18622 r18644 25 25 ON diffInputSkyfile.diff_id = diffSkyfile.diff_id 26 26 WHERE 27 diffRun.state = ' run'28 AND warpRun.state = ' stop'29 AND fakeRun.state = ' stop'30 AND camRun.state = ' stop'27 diffRun.state = 'new' 28 AND warpRun.state = 'full' 29 AND fakeRun.state = 'full' 30 AND camRun.state = 'full' 31 31 AND chipRun.state = 'full' 32 32 AND diffSkyfile.diff_id IS NULL -
branches/eam_branch_20080719/ippTools/share/faketool_completely_processed_exp.sql
r17938 r18644 31 31 AND rawImfile.class_id = fakeProcessedImfile.class_id 32 32 WHERE 33 fakeRun.state = ' run'33 fakeRun.state = 'new' 34 34 GROUP BY 35 35 fakeRun.fake_id, -
branches/eam_branch_20080719/ippTools/share/faketool_find_camrun.sql
r18622 r18644 32 32 using(exp_id) 33 33 WHERE 34 camRun.state = ' stop'34 camRun.state = 'full' 35 35 AND chipRun.state = 'full' 36 36 ) as Foo -
branches/eam_branch_20080719/ippTools/share/faketool_find_pendingexp.sql
r18622 r18644 25 25 ON fakeRun.label = fakeMask.label 26 26 WHERE 27 fakeRun.state = ' run'28 AND camRun.state = ' stop'27 fakeRun.state = 'new' 28 AND camRun.state = 'full' 29 29 AND chipRun.state = 'full' 30 30 AND fakeMask.label IS NULL -
branches/eam_branch_20080719/ippTools/share/faketool_queue_cam_id.sql
r17938 r18644 14 14 FROM camRun 15 15 WHERE 16 camRun.state = ' stop'16 camRun.state = 'full' 17 17 AND camRun.cam_id = %lld -
branches/eam_branch_20080719/ippTools/share/stacktool_definebyquery_part1.sql
r18609 r18644 23 23 JOIN rawExp USING(exp_id, tess_id) 24 24 WHERE 25 warpRun.state = ' stop'25 warpRun.state = 'full' 26 26 AND warpSkyfile.ignored = 0 27 27 AND warpSkyfile.fault = 0 -
branches/eam_branch_20080719/ippTools/share/stacktool_definebyquery_test.sql
r18609 r18644 30 30 JOIN rawExp USING(exp_id, tess_id) 31 31 WHERE 32 warpRun.state = ' stop'32 warpRun.state = 'full' 33 33 AND warpSkyfile.ignored = 0 34 34 AND warpSkyfile.fault = 0 -
branches/eam_branch_20080719/ippTools/share/stacktool_find_complete_warps.sql
r18622 r18644 23 23 AND stackRun.stack_id = stackInputSkyfile.stack_id 24 24 WHERE 25 warpRun.state = ' stop'25 warpRun.state = 'full' 26 26 AND warpSkyfile.ignored = 0 27 27 GROUP BY -
branches/eam_branch_20080719/ippTools/share/stacktool_inputskyfile.sql
r18029 r18644 22 22 ON chipProcessedImfile.exp_id = rawExp.exp_id 23 23 WHERE 24 stackRun.state = ' run'24 stackRun.state = 'new' -
branches/eam_branch_20080719/ippTools/share/stacktool_sumskyfile.sql
r12263 r18644 5 5 USING(stack_id) 6 6 WHERE 7 stackRun.state = ' run'7 stackRun.state = 'new' -
branches/eam_branch_20080719/ippTools/share/stacktool_tosum.sql
r18622 r18644 25 25 USING(stack_id) 26 26 WHERE 27 stackRun.state = ' run'27 stackRun.state = 'new' 28 28 AND stackSumSkyfile.stack_id IS NULL -
branches/eam_branch_20080719/ippTools/share/warptool_exp.sql
r18029 r18644 5 5 USING(fake_id) 6 6 WHERE 7 warpRun.state = ' run'8 AND fakeRun.state = ' stop'7 warpRun.state = 'new' 8 AND fakeRun.state = 'full' -
branches/eam_branch_20080719/ippTools/share/warptool_imfile.sql
r18622 r18644 21 21 AND chipProcessedImfile.class_id = rawImfile.class_id 22 22 WHERE 23 warpRun.state = ' run'24 AND fakeRun.state = ' stop'25 AND camRun.state = ' stop'23 warpRun.state = 'new' 24 AND fakeRun.state = 'full' 25 AND camRun.state = 'full' 26 26 AND chipRun.state = 'full' 27 27 -
branches/eam_branch_20080719/ippTools/share/warptool_scmap.sql
r18622 r18644 19 19 AND warpSkyCellMap.class_id = chipProcessedImfile.class_id 20 20 WHERE 21 -- warpRun.state = ' run'22 fakeRun.state = ' stop'23 AND camRun.state = ' stop'21 -- warpRun.state = 'new' 22 fakeRun.state = 'full' 23 AND camRun.state = 'full' 24 24 AND chipRun.state = 'full' -
branches/eam_branch_20080719/ippTools/share/warptool_tooverlap.sql
r18622 r18644 22 22 ON warpRun.label = warpMask.label 23 23 WHERE 24 warpRun.state = ' run'25 AND fakeRun.state = ' stop'26 AND camRun.state = ' stop'24 warpRun.state = 'new' 25 AND fakeRun.state = 'full' 26 AND camRun.state = 'full' 27 27 AND chipRun.state = 'full' 28 28 AND warpSkyCellMap.warp_id IS NULL -
branches/eam_branch_20080719/ippTools/share/warptool_towarped.sql
r18622 r18644 27 27 ON warpRun.label = warpMask.label 28 28 WHERE 29 warpRun.state = ' run'30 AND fakeRun.state = ' stop'31 AND camRun.state = ' stop'29 warpRun.state = 'new' 30 AND fakeRun.state = 'full' 31 AND camRun.state = 'full' 32 32 AND chipRun.state = 'full' 33 33 AND warpSkyfile.warp_id IS NULL -
branches/eam_branch_20080719/ippTools/share/warptool_warped.sql
r12261 r18644 5 5 USING(warp_id) 6 6 WHERE 7 warpRun.state = ' run'7 warpRun.state = 'new'
Note:
See TracChangeset
for help on using the changeset viewer.
