Changeset 12174 for trunk/ippTools/share
- Timestamp:
- Mar 1, 2007, 4:57:45 PM (19 years ago)
- Location:
- trunk/ippTools/share
- Files:
-
- 2 added
- 4 edited
-
Makefile.am (modified) (1 diff)
-
chiptool_completely_processed_exp.sql (modified) (1 diff)
-
chiptool_find_unprocessed_imfile.pl (modified) (1 diff)
-
chiptool_pendingimfile.sql (modified) (1 diff)
-
chiptool_queuerawexp.sql (added)
-
chiptool_queuerawimfile.sql (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTools/share/Makefile.am
r12097 r12174 9 9 regtool_find_unprocessed_imfile.sql \ 10 10 regtool_processedimfile.sql \ 11 regtool_pendingexp.sql 11 regtool_pendingexp.sql \ 12 chiptool_queuerawexp.sql -
trunk/ippTools/share/chiptool_completely_processed_exp.sql
r12096 r12174 12 12 ON chipPendingExp.exp_tag = rawExp.exp_tag 13 13 LEFT JOIN chipProcessedExp 14 ON chipPendingExp. exp_tag = chipProcessedExp.exp_tag14 ON chipPendingExp.chip_id = chipProcessedExp.chip_id 15 15 LEFT JOIN chipPendingImfile 16 ON chipPendingExp. exp_tag = chipPendingImfile.exp_tag16 ON chipPendingExp.chip_id = chipPendingImfile.chip_id 17 17 LEFT JOIN chipProcessedImfile 18 ON chipPendingExp. exp_tag = chipProcessedImfile.exp_tag18 ON chipPendingExp.chip_id = chipProcessedImfile.chip_id 19 19 WHERE 20 chipProcessedExp. exp_tagIS NULL21 AND chipPendingImfile. exp_tagIS NULL22 AND chipProcessedImfile. exp_tagIS NOT NULL20 chipProcessedExp.chip_id IS NULL 21 AND chipPendingImfile.chip_id IS NULL 22 AND chipProcessedImfile.chip_id IS NOT NULL 23 23 GROUP BY 24 chipPendingExp. exp_tag24 chipPendingExp.chip_id 25 25 HAVING rawExp.imfiles = COUNT(chipProcessedImfile.class_id) -
trunk/ippTools/share/chiptool_find_unprocessed_imfile.pl
r12096 r12174 3 3 FROM chipPendingImfile 4 4 LEFT JOIN chipProcessedImfile 5 USING( exp_tag, class_id)5 USING(chip_id, class_id) 6 6 WHERE 7 chipProcessedImfile. exp_tagIS NULL7 chipProcessedImfile.chip_id IS NULL 8 8 AND chipProcessedImfile.class_id IS NULL -
trunk/ippTools/share/chiptool_pendingimfile.sql
r12096 r12174 5 5 FROM chipPendingImfile 6 6 JOIN chipPendingExp 7 USING( exp_tag)7 USING(chip_id) 8 8 JOIN rawExp 9 USING(exp_tag)9 ON chipPendingExp.exp_tag = rawExp.exp_tag 10 10 LEFT JOIN chipMask 11 11 ON chipPendingExp.label = chipMask.label
Note:
See TracChangeset
for help on using the changeset viewer.
