metacat / src / drop-postgres.sql @ 6691
1 |
/**
|
---|---|
2 |
* '$RCSfile$'
|
3 |
* Copyright: 2004 Regents of the University of California and the
|
4 |
* National Center for Ecological Analysis and Synthesis
|
5 |
*
|
6 |
* '$Author: jones $'
|
7 |
* '$Date: 2011-02-14 14:03:22 -0800 (Mon, 14 Feb 2011) $'
|
8 |
* '$Revision: 5956 $'
|
9 |
*
|
10 |
* This program is free software, you can redistribute it and/or modify
|
11 |
* it under the terms of the GNU General Public License as published by
|
12 |
* the Free Software Foundation, either version 2 of the License, or
|
13 |
* (at your option) any later version.
|
14 |
*
|
15 |
* This program is distributed in the hope that it will be useful,
|
16 |
* but WITHOUT ANY WARRANTY, without even the implied warranty of
|
17 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
18 |
* GNU General Public License for more details.
|
19 |
*
|
20 |
* You should have received a copy of the GNU General Public License
|
21 |
* along with this program, if not, write to the Free Software
|
22 |
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
23 |
*/
|
24 |
|
25 |
/*
|
26 |
* this is sql script does the same as the sql script named
|
27 |
* xmltables.sql except that this script is to be use to
|
28 |
* create the database tables on a Postgresql backend rather
|
29 |
* than an Oracle Backend
|
30 |
*/
|
31 |
|
32 |
/*
|
33 |
* Drop all of the objects in proper order
|
34 |
*/
|
35 |
|
36 |
DROP TABLE xml_index; |
37 |
DROP TABLE xml_access; |
38 |
DROP TABLE xml_accesssubtree; |
39 |
DROP TABLE xml_revisions; |
40 |
DROP TABLE xml_relation; |
41 |
DROP TABLE xml_documents CASCADE; |
42 |
DROP TABLE xml_nodes; |
43 |
DROP TABLE xml_nodes_revisions; |
44 |
DROP TABLE xml_replication; |
45 |
DROP TABLE xml_catalog; |
46 |
DROP TABLE identifier; |
47 |
DROP TABLE access_log; |
48 |
DROP TABLE harvest_site_schedule; |
49 |
DROP TABLE harvest_detail_log; |
50 |
DROP TABLE harvest_log; |
51 |
DROP TABLE xml_queryresult; |
52 |
DROP TABLE xml_returnfield; |
53 |
DROP TABLE xml_path_index; |
54 |
DROP TABLE systemmetadata; |
55 |
DROP TABLE scheduled_job_params; |
56 |
DROP TABLE scheduled_job; |
57 |
DROP TABLE db_version; |
58 |
|
59 |
DROP SEQUENCE xml_nodes_id_seq;
|
60 |
DROP SEQUENCE xml_revisions_id_seq;
|
61 |
DROP SEQUENCE xml_catalog_id_seq;
|
62 |
DROP SEQUENCE xml_relation_id_seq;
|
63 |
DROP SEQUENCE xml_replication_id_seq;
|
64 |
DROP SEQUENCE xml_documents_id_seq;
|
65 |
DROP SEQUENCE identifier_id_seq;
|
66 |
DROP SEQUENCE access_log_id_seq;
|
67 |
DROP SEQUENCE xml_queryresult_id_seq;
|
68 |
DROP SEQUENCE xml_returnfield_id_seq;
|
69 |
DROP SEQUENCE xml_path_index_id_seq;
|
70 |
DROP SEQUENCE db_version_id_seq;
|
71 |
DROP SEQUENCE scheduled_job_id_seq;
|
72 |
DROP SEQUENCE scheduled_job_params_id_seq;
|
73 |
|