1 |
2276
|
jones
|
/**
|
2 |
|
|
* '$RCSfile$'
|
3 |
|
|
* Copyright: 2004 Regents of the University of California and the
|
4 |
|
|
* National Center for Ecological Analysis and Synthesis
|
5 |
|
|
*
|
6 |
|
|
* '$Author$'
|
7 |
|
|
* '$Date$'
|
8 |
|
|
* '$Revision$'
|
9 |
|
|
*
|
10 |
2599
|
jones
|
* This program is free software, you can redistribute it and/or modify
|
11 |
2276
|
jones
|
* it under the terms of the GNU General Public License as published by
|
12 |
2599
|
jones
|
* the Free Software Foundation, either version 2 of the License, or
|
13 |
2276
|
jones
|
* (at your option) any later version.
|
14 |
|
|
*
|
15 |
|
|
* This program is distributed in the hope that it will be useful,
|
16 |
2599
|
jones
|
* but WITHOUT ANY WARRANTY, without even the implied warranty of
|
17 |
2276
|
jones
|
* 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 |
2599
|
jones
|
* along with this program, if not, write to the Free Software
|
22 |
2276
|
jones
|
* 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 |
2599
|
jones
|
DROP TABLE xml_documents CASCADE;
|
42 |
2276
|
jones
|
DROP TABLE xml_nodes;
|
43 |
2599
|
jones
|
DROP TABLE xml_nodes_revisions;
|
44 |
2276
|
jones
|
DROP TABLE xml_replication;
|
45 |
|
|
DROP TABLE xml_catalog;
|
46 |
2769
|
jones
|
DROP TABLE identifier;
|
47 |
2276
|
jones
|
DROP TABLE access_log;
|
48 |
|
|
DROP TABLE harvest_site_schedule;
|
49 |
|
|
DROP TABLE harvest_detail_log;
|
50 |
|
|
DROP TABLE harvest_log;
|
51 |
2456
|
jones
|
DROP TABLE xml_queryresult;
|
52 |
|
|
DROP TABLE xml_returnfield;
|
53 |
2599
|
jones
|
DROP TABLE xml_path_index;
|
54 |
5956
|
jones
|
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;
|