metacat/src/clear.sql @ 2518
1 |
set echo off; |
---|---|
2 |
/* removing records from xml_index */
|
3 |
delete from xml_index; |
4 |
/* removing records from xml_revisions; */
|
5 |
delete from xml_revisions; |
6 |
/* removing records from xml_documents; */
|
7 |
delete from xml_documents; |
8 |
/* removing records from xml_nodes; */
|
9 |
delete from xml_nodes; |
10 |
delete from xml_relation; |
11 |
commit; |
12 |
|