metacat / src / xmltables-oracle.sql @ 8013
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: leinfelder $'
|
7 |
* '$Date: 2013-06-25 16:42:40 -0700 (Tue, 25 Jun 2013) $'
|
8 |
* '$Revision: 7830 $'
|
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 |
* Drop all of the objects in proper order
|
27 |
*/
|
28 |
set echo off
|
29 |
|
30 |
DROP SEQUENCE xml_nodes_id_seq;
|
31 |
DROP SEQUENCE xml_revisions_id_seq;
|
32 |
DROP SEQUENCE xml_catalog_id_seq;
|
33 |
DROP SEQUENCE xml_relation_id_seq;
|
34 |
DROP SEQUENCE xml_replication_id_seq;
|
35 |
DROP SEQUENCE access_log_id_seq;
|
36 |
DROP SEQUENCE xml_returnfield_id_seq;
|
37 |
DROP SEQUENCE xml_queryresult_id_seq;
|
38 |
DROP SEQUENCE xml_path_index_id_seq;
|
39 |
DROP SEQUENCE db_version_id_seq;
|
40 |
|
41 |
/* Drop triggers are not necessary */
|
42 |
DROP TRIGGER xml_nodes_before_insert; |
43 |
DROP TRIGGER xml_revisions_before_insert; |
44 |
DROP TRIGGER xml_catalog_before_insert; |
45 |
DROP TRIGGER xml_relation_before_insert; |
46 |
DROP TRIGGER xml_replication_before_insert; |
47 |
DROP TRIGGER access_log_before_insert; |
48 |
DROP TRIGGER xml_returnfield_before_insert; |
49 |
DROP TRIGGER xml_queryresult_before_insert; |
50 |
DROP TRIGGER db_version_before_insert; |
51 |
|
52 |
|
53 |
DROP TABLE xml_index; |
54 |
DROP TABLE xml_access; |
55 |
DROP TABLE xml_accesssubtree; |
56 |
DROP TABLE xml_revisions; |
57 |
DROP TABLE xml_relation; |
58 |
DROP TABLE xml_documents CASCADE CONSTRAINTS; |
59 |
DROP TABLE xml_nodes; |
60 |
DROP TABLE xml_nodes_revisions; |
61 |
DROP TABLE xml_replication; |
62 |
DROP TABLE xml_catalog; |
63 |
DROP TABLE identifier; |
64 |
DROP TABLE systemMetadata; |
65 |
DROP TABLE access_log; |
66 |
DROP TABLE harvest_site_schedule; |
67 |
DROP TABLE harvest_detail_log; |
68 |
DROP TABLE harvest_log; |
69 |
DROP TABLE xml_queryresult; |
70 |
DROP TABLE xml_returnfield; |
71 |
DROP TABLE xml_path_index; |
72 |
DROP TABLE db_version; |
73 |
|
74 |
/*
|
75 |
*Replication -- table to store servers that metacat is replicated to
|
76 |
*/
|
77 |
CREATE TABLE xml_replication ( |
78 |
serverid NUMBER(20),
|
79 |
server VARCHAR2(512), |
80 |
last_checked DATE,
|
81 |
replicate NUMBER(1),
|
82 |
datareplicate NUMBER(1),
|
83 |
hub NUMBER(1),
|
84 |
CONSTRAINT xml_replication_pk PRIMARY KEY (serverid) |
85 |
); |
86 |
|
87 |
CREATE SEQUENCE xml_replication_id_seq;
|
88 |
CREATE TRIGGER xml_replication_before_insert |
89 |
BEFORE INSERT ON xml_replication FOR EACH ROW |
90 |
BEGIN
|
91 |
SELECT xml_replication_id_seq.nextval
|
92 |
INTO :new.serverid
|
93 |
FROM dual;
|
94 |
END;
|
95 |
/ |
96 |
|
97 |
INSERT INTO xml_replication (server, replicate, datareplicate, hub) |
98 |
VALUES ('localhost', '0', '0', '0'); |
99 |
|
100 |
/*
|
101 |
* Nodes -- table to store XML Nodes (both elements and attributes)
|
102 |
*/
|
103 |
CREATE SEQUENCE xml_nodes_id_seq;
|
104 |
CREATE TABLE xml_nodes ( |
105 |
nodeid NUMBER(20), -- the unique node id (pk) |
106 |
nodeindex NUMBER(10), -- order of nodes within parent |
107 |
nodetype VARCHAR2(20), -- type (DOCUMENT, COMMENT, PI, |
108 |
-- ELEMENT, ATTRIBUTE, TEXT)
|
109 |
nodename VARCHAR2(250), -- the name of an element or attribute |
110 |
nodeprefix VARCHAR2(50), -- the namespace prefix of an element |
111 |
-- or attribute
|
112 |
nodedata VARCHAR2(4000), -- the data for this node (e.g., |
113 |
-- for TEXT it is the content)
|
114 |
parentnodeid NUMBER(20), -- index of the parent of this node |
115 |
rootnodeid NUMBER(20), -- index of the root node of this tree |
116 |
docid VARCHAR2(250), -- index to the document id |
117 |
date_created DATE,
|
118 |
date_updated DATE,
|
119 |
nodedatanumerical NUMBER, -- the data for this node if it is a number
|
120 |
nodedatadate TIMESTAMP, -- the data for this node if it is a date |
121 |
CONSTRAINT xml_nodes_pk PRIMARY KEY (nodeid), |
122 |
CONSTRAINT xml_nodes_root_fk
|
123 |
FOREIGN KEY (rootnodeid) REFERENCES xml_nodes, |
124 |
CONSTRAINT xml_nodes_parent_fk
|
125 |
FOREIGN KEY (parentnodeid) REFERENCES xml_nodes |
126 |
); |
127 |
CREATE TRIGGER xml_nodes_before_insert |
128 |
BEFORE INSERT ON xml_nodes FOR EACH ROW |
129 |
BEGIN
|
130 |
SELECT xml_nodes_id_seq.nextval
|
131 |
INTO :new.nodeid
|
132 |
FROM dual;
|
133 |
END;
|
134 |
/ |
135 |
|
136 |
|
137 |
/*
|
138 |
* Indexes of rootnodeid, parentnodeid, and nodename in xml_nodes
|
139 |
*/
|
140 |
CREATE INDEX xml_nodes_idx1 ON xml_nodes (rootnodeid); |
141 |
CREATE INDEX xml_nodes_idx2 ON xml_nodes (parentnodeid); |
142 |
CREATE INDEX xml_nodes_idx3 ON xml_nodes (nodename); |
143 |
CREATE INDEX xml_nodes_idx4 ON xml_nodes (docid); |
144 |
|
145 |
|
146 |
/*
|
147 |
* xml_nodes_revisions -- table to store nodes from xml_nodes which are of old revisions and deleted document
|
148 |
*/
|
149 |
|
150 |
CREATE TABLE xml_nodes_revisions ( |
151 |
nodeid NUMBER(20), -- the unique node id (pk) |
152 |
nodeindex NUMBER(10), -- order of nodes within parent |
153 |
nodetype VARCHAR2(20), -- type (DOCUMENT, COMMENT, PI, |
154 |
-- ELEMENT, ATTRIBUTE, TEXT)
|
155 |
nodename VARCHAR2(250), -- the name of an element or attribute |
156 |
nodeprefix VARCHAR2(50), -- the namespace prefix of an element |
157 |
-- or attribute
|
158 |
nodedata VARCHAR2(4000), -- the data for this node (e.g., |
159 |
-- for TEXT it is the content)
|
160 |
parentnodeid NUMBER(20), -- index of the parent of this node |
161 |
rootnodeid NUMBER(20), -- index of the root node of this tree |
162 |
docid VARCHAR2(250), -- index to the document id |
163 |
date_created DATE,
|
164 |
date_updated DATE,
|
165 |
nodedatanumerical NUMBER, -- the data for this node if it is a number
|
166 |
nodedatadate TIMESTAMP, -- the data for this node if it is a date |
167 |
CONSTRAINT xml_nodes_revisions_pk PRIMARY KEY (nodeid), |
168 |
CONSTRAINT xml_nodes_revisions_root_fk
|
169 |
FOREIGN KEY (rootnodeid) REFERENCES xml_nodes_revisions, |
170 |
CONSTRAINT xml_nodes_revisions_parent_fk
|
171 |
FOREIGN KEY (parentnodeid) REFERENCES xml_nodes_revisions |
172 |
); |
173 |
|
174 |
|
175 |
/*
|
176 |
* Indexes of rootnodeid, parentnodeid, and nodename in xml_nodes_revision
|
177 |
*/
|
178 |
CREATE INDEX xml_nodes_revisions_idx1 ON xml_nodes_revisions (rootnodeid); |
179 |
CREATE INDEX xml_nodes_revisions_idx2 ON xml_nodes_revisions (parentnodeid); |
180 |
CREATE INDEX xml_nodes_revisions_idx3 ON xml_nodes_revisions (nodename); |
181 |
|
182 |
/*
|
183 |
* XML Catalog -- table to store all external sources for XML documents
|
184 |
*/
|
185 |
CREATE TABLE xml_catalog ( |
186 |
catalog_id NUMBER(20), -- the id for this catalog entry |
187 |
entry_type VARCHAR2(500), -- the type of this catalog entry |
188 |
-- (e.g., DTD, XSD, XSL)
|
189 |
source_doctype VARCHAR2(500), -- the source public_id for transforms |
190 |
target_doctype VARCHAR2(500), -- the target public_id for transforms |
191 |
public_id VARCHAR2(500), -- the unique id for this type |
192 |
system_id VARCHAR2(1000), -- the local location of the object |
193 |
CONSTRAINT xml_catalog_pk PRIMARY KEY (catalog_id), |
194 |
CONSTRAINT xml_catalog_uk UNIQUE |
195 |
(entry_type, source_doctype, target_doctype, public_id) |
196 |
); |
197 |
|
198 |
CREATE SEQUENCE xml_catalog_id_seq;
|
199 |
|
200 |
CREATE TRIGGER xml_catalog_before_insert |
201 |
BEFORE INSERT ON xml_catalog FOR EACH ROW |
202 |
BEGIN
|
203 |
SELECT xml_catalog_id_seq.nextval
|
204 |
INTO :new.catalog_id
|
205 |
FROM dual;
|
206 |
END;
|
207 |
/ |
208 |
|
209 |
/*
|
210 |
* Documents -- table to store XML documents
|
211 |
*/
|
212 |
CREATE TABLE xml_documents ( |
213 |
docid VARCHAR2(250), -- the document id # |
214 |
rootnodeid NUMBER(20), -- reference to root node of the DOM |
215 |
docname VARCHAR2(100), -- usually the root element name |
216 |
doctype VARCHAR2(100), -- public id indicating document type |
217 |
user_owner VARCHAR2(100), -- the user owned the document |
218 |
user_updated VARCHAR2(100), -- the user updated the document |
219 |
server_location NUMBER(20), -- the server on which this document |
220 |
-- originates
|
221 |
rev NUMBER(10) DEFAULT 1,--the revision number of the docume |
222 |
date_created DATE,
|
223 |
date_updated DATE,
|
224 |
public_access NUMBER(1), -- flag for public access |
225 |
catalog_id NUMBER(20), -- reference to xml_catalog |
226 |
CONSTRAINT xml_documents_pk PRIMARY KEY (docid), |
227 |
CONSTRAINT xml_documents_rep_fk
|
228 |
FOREIGN KEY (server_location) REFERENCES xml_replication, |
229 |
CONSTRAINT xml_documents_root_fk
|
230 |
FOREIGN KEY (rootnodeid) REFERENCES xml_nodes, |
231 |
CONSTRAINT xml_documents_catalog_fk
|
232 |
FOREIGN KEY (catalog_id) REFERENCES xml_catalog |
233 |
); |
234 |
|
235 |
/*
|
236 |
* Index of <docid,doctype> in xml_document
|
237 |
*/
|
238 |
CREATE INDEX xml_documents_idx1 ON xml_documents (docid, doctype); |
239 |
CREATE INDEX xml_documents_idx2 ON xml_documents (lower(user_owner)); |
240 |
CREATE INDEX xml_documents_idx3 ON xml_documents (rootnodeid); |
241 |
CREATE INDEX xml_documents_idx5 ON xml_documents (docid, rev); |
242 |
|
243 |
|
244 |
/*
|
245 |
* Revised Documents -- table to store XML documents saved after an UPDATE
|
246 |
* or DELETE
|
247 |
*/
|
248 |
CREATE TABLE xml_revisions ( |
249 |
revisionid NUMBER(20), -- the revision number we are saving |
250 |
docid VARCHAR2(250), -- the document id # |
251 |
rootnodeid NUMBER(20), -- reference to root node of the DOM |
252 |
docname VARCHAR2(100), -- usually the root element name |
253 |
doctype VARCHAR2(100), -- public id indicating document type |
254 |
user_owner VARCHAR2(100), |
255 |
user_updated VARCHAR2(100), |
256 |
server_location NUMBER(20),
|
257 |
rev NUMBER(10),
|
258 |
date_created DATE,
|
259 |
date_updated DATE,
|
260 |
public_access NUMBER(1), -- flag for public access |
261 |
catalog_id NUMBER(20), -- reference to xml_catalog |
262 |
CONSTRAINT xml_revisions_pk PRIMARY KEY (revisionid), |
263 |
CONSTRAINT xml_revisions_rep_fk
|
264 |
FOREIGN KEY (server_location) REFERENCES xml_replication, |
265 |
CONSTRAINT xml_revisions_root_fk
|
266 |
FOREIGN KEY (rootnodeid) REFERENCES xml_nodes_revisions, |
267 |
CONSTRAINT xml_revisions_catalog_fk
|
268 |
FOREIGN KEY (catalog_id) REFERENCES xml_catalog |
269 |
); |
270 |
|
271 |
CREATE SEQUENCE xml_revisions_id_seq;
|
272 |
|
273 |
CREATE TRIGGER xml_revisions_before_insert |
274 |
BEFORE INSERT ON xml_revisions FOR EACH ROW |
275 |
BEGIN
|
276 |
SELECT xml_revisions_id_seq.nextval
|
277 |
INTO :new.revisionid
|
278 |
FROM dual;
|
279 |
END;
|
280 |
/ |
281 |
|
282 |
/*
|
283 |
* ACL -- table to store ACL for XML documents by principals
|
284 |
*/
|
285 |
CREATE TABLE xml_access ( |
286 |
guid VARCHAR2(2000), -- the globally unique string identifier |
287 |
accessfileid VARCHAR2(2000), -- the id for the access file |
288 |
principal_name VARCHAR2(100), -- name of user, group, etc. |
289 |
permission NUMBER(1), -- "read", "write", "all" |
290 |
perm_type VARCHAR2(32), -- "allowed" or "denied" |
291 |
perm_order VARCHAR2(32), -- "allow first" or "deny first" |
292 |
begin_time DATE, -- the time that permission begins |
293 |
end_time DATE, -- the time that permission ends |
294 |
ticket_count NUMBER(5), -- ticket counter for that permission |
295 |
subtreeid VARCHAR2(32), -- sub tree id |
296 |
startnodeid NUMBER(20), -- start node for sub tree |
297 |
endnodeid NUMBER(20), -- end node for sub tree |
298 |
CONSTRAINT xml_access_ck CHECK (begin_time < end_time), |
299 |
); |
300 |
CREATE INDEX xml_access_idx1 ON xml_access (lower(principal_name)); |
301 |
CREATE INDEX xml_access_idx2 ON xml_access (permission); |
302 |
CREATE INDEX xml_access_idx3 ON xml_access (perm_type); |
303 |
CREATE INDEX xml_access_idx4 ON xml_access (perm_order); |
304 |
CREATE INDEX xml_access_idx5 ON xml_access (subtreeid); |
305 |
CREATE INDEX xml_access_idx6 on xml_access(guid); |
306 |
|
307 |
|
308 |
/*
|
309 |
* Index of Nodes -- table to store precomputed paths through tree for
|
310 |
* quick searching in structured searches
|
311 |
*/
|
312 |
CREATE TABLE xml_index ( |
313 |
nodeid NUMBER(20), -- the unique node id |
314 |
path VARCHAR2(1000), -- precomputed path through tree |
315 |
docid VARCHAR2(250), -- index to the document id |
316 |
doctype VARCHAR2(100), -- public id indicating document type |
317 |
parentnodeid NUMBER(20), -- id of the parent of the node |
318 |
-- represented by this row
|
319 |
CONSTRAINT xml_index_pk PRIMARY KEY (nodeid,path), |
320 |
CONSTRAINT xml_index_nodeid_fk FOREIGN KEY (nodeid) REFERENCES xml_nodes, |
321 |
CONSTRAINT xml_index_docid_fk
|
322 |
FOREIGN KEY (docid) REFERENCES xml_documents |
323 |
); |
324 |
|
325 |
/*
|
326 |
* Index of the paths in xml_index
|
327 |
*/
|
328 |
CREATE INDEX xml_index_idx1 ON xml_index (path); |
329 |
CREATE INDEX xml_index_idx2 ON xml_index (docid); |
330 |
CREATE INDEX xml_index_idx3 ON xml_index (nodeid); |
331 |
|
332 |
|
333 |
/*
|
334 |
* Index of Paths - table to store nodes with paths specified by userst in metacat.properties
|
335 |
*/
|
336 |
CREATE TABLE xml_path_index ( |
337 |
nodeid NUMBER(20), -- the unique node id |
338 |
docid VARCHAR2(250), -- index to the document id |
339 |
path VARCHAR2(4000), -- precomputed path through tree |
340 |
nodedata VARCHAR2(4000), -- the data for this node e.g., |
341 |
nodedatanumerical NUMBER(20), -- the data for this node if |
342 |
nodedatadate TIMESTAMP, -- the data for this node if it is a date |
343 |
parentnodeid NUMBER(20), -- index of the parent of this node |
344 |
CONSTRAINT xml_path_index_pk PRIMARY KEY (nodeid), |
345 |
CONSTRAINT xml_path_index_docid_fk FOREIGN KEY (docid) REFERENCES xml_documents |
346 |
); |
347 |
|
348 |
|
349 |
/*
|
350 |
* create sequence an trigger
|
351 |
*/
|
352 |
CREATE SEQUENCE xml_path_index_id_seq;
|
353 |
CREATE TRIGGER xml_path_index_before_insert |
354 |
BEFORE INSERT ON xml_path_index FOR EACH ROW |
355 |
BEGIN
|
356 |
SELECT xml_path_index_id_seq.nextval
|
357 |
INTO :new.nodeid
|
358 |
FROM dual;
|
359 |
END;
|
360 |
/ |
361 |
|
362 |
|
363 |
/*
|
364 |
* Index of the path, nodedata, nodedatanumerical in xml_path_index
|
365 |
*/
|
366 |
CREATE INDEX xml_path_index_idx1 ON xml_path_index (path); |
367 |
CREATE INDEX xml_path_index_idx2 ON xml_path_index (nodedata); |
368 |
CREATE INDEX xml_path_index_idx3 ON xml_path_index (nodedatanumerical); |
369 |
CREATE INDEX xml_path_index_idx4 ON xml_path_index (nodedatadate); |
370 |
CREATE INDEX xml_path_index_idx6 ON xml_path_index (docid); |
371 |
|
372 |
|
373 |
CREATE TABLE xml_relation ( |
374 |
relationid NUMBER(20) PRIMARY KEY, -- unique id |
375 |
docid VARCHAR2(250), -- the docid of the package file |
376 |
-- that this relation came from
|
377 |
packagetype VARCHAR2(250), -- the type of the package |
378 |
subject VARCHAR2(512) NOT NULL, -- the subject of the relation |
379 |
subdoctype VARCHAR2(128), -- the doctype of the subject |
380 |
relationship VARCHAR2(128) NOT NULL,-- the relationship type |
381 |
object VARCHAR2(512) NOT NULL, -- the object of the relation |
382 |
objdoctype VARCHAR2(128), -- the doctype of the object |
383 |
CONSTRAINT xml_relation_uk UNIQUE (docid, subject, relationship, object), |
384 |
CONSTRAINT xml_relation_docid_fk
|
385 |
FOREIGN KEY (docid) REFERENCES xml_documents |
386 |
); |
387 |
|
388 |
CREATE SEQUENCE xml_relation_id_seq;
|
389 |
|
390 |
CREATE TRIGGER xml_relation_before_insert |
391 |
BEFORE INSERT ON xml_relation FOR EACH ROW |
392 |
BEGIN
|
393 |
SELECT xml_relation_id_seq.nextval
|
394 |
INTO :new.relationid
|
395 |
FROM dual;
|
396 |
END;
|
397 |
/ |
398 |
|
399 |
/*
|
400 |
* Table used to store all document identifiers for system metadata objects
|
401 |
* similar restraints to identifier. Cannot use identifier table for this
|
402 |
* purpose because then you have to worry about whether you insert the
|
403 |
* data first or the systemMetadata first.
|
404 |
*/
|
405 |
CREATE TABLE systemMetadata ( |
406 |
guid VARCHAR2(2000), -- the globally unique string identifier |
407 |
serial_version VARCHAR2(256), --the serial version of the object |
408 |
date_uploaded DATE, -- the date/time the document was first submitted |
409 |
rights_holder VARCHAR2(250), --the user who has rights to the document, usually the first persons to upload it |
410 |
checksum VARCHAR2(512), --the checksum of the doc using the given algorithm (see below) |
411 |
checksum_algorithm VARCHAR2(250), --the algorithm used to calculate the checksum |
412 |
origin_member_node VARCHAR2(250), --the member node where the document was first uploaded |
413 |
authoritive_member_node VARCHAR2(250), --the member node that currently controls the document |
414 |
date_modified DATE, -- the last date/time that the file was changed |
415 |
submitter VARCHAR2(256), -- the user who originally submitted the doc |
416 |
object_format VARCHAR2(256), --the format of the object |
417 |
size VARCHAR2(256), --the size of the object |
418 |
archived boolean, -- specifies whether this an archived object |
419 |
replication_allowed boolean, -- replication allowed |
420 |
number_replicas NUMBER(8), -- the number of replicas allowed |
421 |
obsoletes VARCHAR2(2000), -- the identifier of the record that this replaces |
422 |
obsoleted_by VARCHAR2(2000), -- the identifier of the record that replaces this record |
423 |
CONSTRAINT systemMetadata_pk
|
424 |
PRIMARY KEY (guid) |
425 |
) |
426 |
|
427 |
CREATE TABLE smReplicationPolicy ( |
428 |
guid VARCHAR2(2000), -- the globally unique string identifier of the object that the system metadata describes |
429 |
member_node VARCHAR(250), -- replication member node |
430 |
policy VARCHAR2(2000), -- the policy (preferred, blocked, etc...TBD) |
431 |
CONSTRAINT smReplicationPolicy_fk
|
432 |
FOREIGN KEY (guid) REFERENCES systemMetadata DEFERRABLE |
433 |
); |
434 |
|
435 |
CREATE TABLE smReplicationStatus ( |
436 |
guid VARCHAR2(2000), -- the globally unique string identifier of the object that the system metadata describes |
437 |
member_node VARCHAR(250), -- replication member node |
438 |
status VARCHAR(250), -- replication status |
439 |
date_verified DATE, -- the date replication was verified |
440 |
CONSTRAINT smReplicationStatus_fk
|
441 |
FOREIGN KEY (guid) REFERENCES systemMetadata DEFERRABLE |
442 |
); |
443 |
|
444 |
/*
|
445 |
* Table used to store all document identifiers in metacat. Each identifier
|
446 |
* has a globally unique, unconstrained string, which we will refer to as a
|
447 |
* GUID, and a local metacat identifier, which consists of the docid
|
448 |
* and revision fields. Each row maps one global identifier to the local
|
449 |
* identifier (docid) used within metacat.
|
450 |
*/
|
451 |
CREATE TABLE identifier ( |
452 |
guid VARCHAR2(2000), -- the globally unique string identifier |
453 |
docid VARCHAR2(250), -- the local document id # |
454 |
rev NUMBER(8) -- the revision part of the local identifier |
455 |
); |
456 |
CREATE INDEX identifier_guid on identifier(guid); |
457 |
CREATE INDEX identifier_docid on identifier(docid); |
458 |
CREATE INDEX identifier_rev on identifier(rev); |
459 |
CREATE INDEX identifier_docid_rev on identifier(docid, rev); |
460 |
|
461 |
|
462 |
/*
|
463 |
* the index_event table for solr-based indexing
|
464 |
*/
|
465 |
CREATE TABLE index_event ( |
466 |
guid VARCHAR2(2000), |
467 |
event_action VARCHAR2(250), |
468 |
description VARCHAR2(2000), |
469 |
event_date DATE
|
470 |
); |
471 |
|
472 |
/*
|
473 |
* accesssubtree -- table to store access subtree info
|
474 |
*/
|
475 |
CREATE TABLE xml_accesssubtree ( |
476 |
docid VARCHAR2(250), -- the document id # |
477 |
rev NUMBER(10) DEFAULT 1, --the revision number of the docume |
478 |
controllevel VARCHAR2(50), -- the level it control -- document or subtree |
479 |
subtreeid VARCHAR2(250), -- the subtree id |
480 |
startnodeid NUMBER(20), -- the start node id of access subtree |
481 |
endnodeid NUMBER(20), -- the end node if of access subtree |
482 |
CONSTRAINT xml_accesssubtree_docid_fk
|
483 |
FOREIGN KEY (docid) REFERENCES xml_documents |
484 |
); |
485 |
|
486 |
/*
|
487 |
* Returnfields -- table to store combinations of returnfields requested
|
488 |
* and the number of times this table is accessed
|
489 |
*/
|
490 |
CREATE TABLE xml_returnfield ( |
491 |
returnfield_id NUMBER(20), -- the id for this returnfield entry |
492 |
returnfield_string VARCHAR2(2000), -- the returnfield string |
493 |
usage_count NUMBER(20), -- the number of times this string |
494 |
-- has been requested
|
495 |
CONSTRAINT xml_returnfield_pk PRIMARY KEY (returnfield_id) |
496 |
); |
497 |
CREATE INDEX xml_returnfield_idx1 ON xml_returnfield(returnfield_string); |
498 |
|
499 |
CREATE SEQUENCE xml_returnfield_id_seq;
|
500 |
|
501 |
CREATE TRIGGER xml_returnfield_before_insert |
502 |
BEFORE INSERT ON xml_returnfield FOR EACH ROW |
503 |
BEGIN
|
504 |
SELECT xml_returnfield_id_seq.nextval
|
505 |
INTO :new.returnfield_id
|
506 |
FROM dual;
|
507 |
END;
|
508 |
/ |
509 |
|
510 |
/*
|
511 |
* Queryresults -- table to store queryresults for a given docid
|
512 |
* and returnfield_id
|
513 |
*/
|
514 |
CREATE TABLE xml_queryresult( |
515 |
queryresult_id NUMBER(20), -- id for this entry |
516 |
returnfield_id NUMBER(20), -- id for the returnfield corresponding to this entry |
517 |
docid VARCHAR2(250), -- docid of the document |
518 |
queryresult_string VARCHAR2(4000), -- resultant text generated for this docid and given |
519 |
-- returnfield
|
520 |
CONSTRAINT xml_queryresult_pk PRIMARY KEY (queryresult_id), |
521 |
CONSTRAINT xml_queryresult_searchid_fk
|
522 |
FOREIGN KEY (returnfield_id) REFERENCES xml_returnfield |
523 |
); |
524 |
|
525 |
CREATE INDEX xml_queryresult_idx1 ON xml_queryresult (returnfield_id, docid); |
526 |
|
527 |
CREATE SEQUENCE xml_queryresult_id_seq;
|
528 |
|
529 |
CREATE TRIGGER xml_queryresult_before_insert |
530 |
BEFORE INSERT ON xml_queryresult FOR EACH ROW |
531 |
BEGIN
|
532 |
SELECT xml_queryresult_id_seq.nextval
|
533 |
INTO :new.queryresult_id
|
534 |
FROM dual;
|
535 |
END;
|
536 |
/ |
537 |
|
538 |
|
539 |
|
540 |
|
541 |
/*
|
542 |
* Logging -- table to store metadata and data access log
|
543 |
*/
|
544 |
CREATE TABLE access_log ( |
545 |
entryid NUMBER(20), -- the identifier for the log event |
546 |
ip_address VARCHAR2(512), -- the ip address inititiating the event |
547 |
user_agent VARCHAR2(512), -- the user agent for the request |
548 |
principal VARCHAR2(512), -- the user initiiating the event |
549 |
docid VARCHAR2(250), -- the document id # |
550 |
event VARCHAR2(512), -- the code symbolizing the event type |
551 |
date_logged DATE, -- the datetime on which the event occurred |
552 |
CONSTRAINT access_log_pk PRIMARY KEY (entryid) |
553 |
); |
554 |
|
555 |
CREATE SEQUENCE access_log_id_seq;
|
556 |
CREATE TRIGGER access_log_before_insert |
557 |
BEFORE INSERT ON access_log FOR EACH ROW |
558 |
BEGIN
|
559 |
SELECT access_log_id_seq.nextval
|
560 |
INTO :new.entryid
|
561 |
FROM dual;
|
562 |
END;
|
563 |
/ |
564 |
|
565 |
/*
|
566 |
* harvest_site_schedule -- table to store harvest sites and schedule info
|
567 |
*/
|
568 |
CREATE TABLE harvest_site_schedule ( |
569 |
site_schedule_id NUMBER, -- unique id
|
570 |
documentlisturl VARCHAR2(255), -- URL of the site harvest document list |
571 |
ldapdn VARCHAR2(255), -- LDAP distinguished name for site account |
572 |
datenextharvest DATE, -- scheduled date of next harvest |
573 |
datelastharvest DATE, -- recorded date of last harvest |
574 |
updatefrequency NUMBER, -- the harvest update frequency
|
575 |
unit VARCHAR2(50), -- update unit -- days weeks or months |
576 |
contact_email VARCHAR2(50), -- email address of the site contact person |
577 |
ldappwd VARCHAR2(20), -- LDAP password for site account |
578 |
CONSTRAINT harvest_site_schedule_pk PRIMARY KEY (site_schedule_id) |
579 |
); |
580 |
|
581 |
/*
|
582 |
* harvest_log -- table to log entries for harvest operations
|
583 |
*/
|
584 |
CREATE TABLE harvest_log ( |
585 |
harvest_log_id NUMBER, -- unique id
|
586 |
harvest_date DATE, -- date of the current harvest |
587 |
status NUMBER, -- non-zero indicates an error status
|
588 |
message VARCHAR2(1000), -- text message for this log entry |
589 |
harvest_operation_code VARCHAR2(30), -- the type of harvest operation |
590 |
site_schedule_id NUMBER, -- site schedule id, or 0 if no site
|
591 |
CONSTRAINT harvest_log_pk PRIMARY KEY (harvest_log_id) |
592 |
); |
593 |
|
594 |
/*
|
595 |
* harvest_detail_log -- table to log detailed info about documents that
|
596 |
* generated errors during the harvest
|
597 |
*/
|
598 |
CREATE TABLE harvest_detail_log ( |
599 |
detail_log_id NUMBER, -- unique id
|
600 |
harvest_log_id NUMBER, -- ponter to the related log entry
|
601 |
scope VARCHAR2(50), -- document scope |
602 |
identifier NUMBER, -- document identifier
|
603 |
revision NUMBER, -- document revision
|
604 |
document_url VARCHAR2(255), -- document URL |
605 |
error_message VARCHAR2(1000), -- text error message |
606 |
document_type VARCHAR2(100), -- document type |
607 |
CONSTRAINT harvest_detail_log_pk PRIMARY KEY (detail_log_id), |
608 |
CONSTRAINT harvest_detail_log_fk
|
609 |
FOREIGN KEY (harvest_log_id) REFERENCES harvest_log |
610 |
); |
611 |
|
612 |
/*
|
613 |
* db_version -- table to store the version history of this database
|
614 |
*/
|
615 |
CREATE TABLE db_version ( |
616 |
db_version_id NUMBER(20), -- the identifier for the version |
617 |
version VARCHAR(250), -- the version number |
618 |
status NUMBER(20), -- status of the version |
619 |
date_created DATE, -- the datetime on which the version was created |
620 |
CONSTRAINT db_version_pk PRIMARY KEY (db_version_id) |
621 |
); |
622 |
|
623 |
CREATE SEQUENCE db_version_id_seq;
|
624 |
CREATE TRIGGER db_version_before_insert |
625 |
BEFORE INSERT ON db_version FOR EACH ROW |
626 |
BEGIN
|
627 |
SELECT db_version_id_seq.nextval
|
628 |
INTO :new.db_version_id
|
629 |
FROM dual;
|
630 |
END;
|
631 |
/ |
632 |
|
633 |
/*
|
634 |
* scheduled_job -- table to store scheduled jobs
|
635 |
*/
|
636 |
CREATE TABLE scheduled_job ( |
637 |
id NUMBER(20) NOT NULL default nextval('scheduled_job_id_seq'), |
638 |
date_created TIMESTAMP NOT NULL, |
639 |
date_updated TIMESTAMP NOT NULL, |
640 |
status VARCHAR2(64) NOT NULL, |
641 |
name VARCHAR2(512) NOT NULL, |
642 |
trigger_name VARCHAR2(512) NOT NULL, |
643 |
group_name VARCHAR2(512) NOT NULL, |
644 |
class_name VARCHAR2(1024) NOT NULL, |
645 |
start_time TIMESTAMP NOT NULL, |
646 |
interval_value NUMBER NOT NULL, |
647 |
interval_unit VARCHAR2(8) NOT NULL, |
648 |
CONSTRAINT scheduled_job_pk PRIMARY KEY (id), |
649 |
CONSTRAINT scheduled_job_uk UNIQUE (name) |
650 |
); |
651 |
|
652 |
CREATE SEQUENCE scheduled_job_id_seq;
|
653 |
CREATE TRIGGER scheduled_job_before_insert |
654 |
BEFORE INSERT ON scheduled_job FOR EACH ROW |
655 |
BEGIN
|
656 |
SELECT scheduled_job_id_seq.nextval
|
657 |
INTO :new.id
|
658 |
FROM dual;
|
659 |
END;
|
660 |
/ |
661 |
|
662 |
/*
|
663 |
* scheduled_job_params -- table to store scheduled job parameters
|
664 |
*/
|
665 |
CREATE TABLE scheduled_job_params ( |
666 |
id NUMBER(20) NOT NULL default nextval('scheduled_job_params_id_seq'), |
667 |
date_created TIMESTAMP NOT NULL, |
668 |
date_updated TIMESTAMP NOT NULL, |
669 |
status VARCHAR2(64) NOT NULL, |
670 |
job_id NUMBER(20) NOT NULL, |
671 |
key VARCHAR2(64) NOT NULL, |
672 |
value VARCHAR2(1024) NOT NULL, |
673 |
CONSTRAINT scheduled_job_params_pk PRIMARY KEY (id), |
674 |
CONSTRAINT scheduled_job_params_fk
|
675 |
FOREIGN KEY (job_id) REFERENCES scheduled_job(id) |
676 |
); |
677 |
|
678 |
CREATE SEQUENCE scheduled_job_params_id_seq;
|
679 |
CREATE TRIGGER scheduled_job_params_before_insert |
680 |
BEFORE INSERT ON scheduled_job_params FOR EACH ROW |
681 |
BEGIN
|
682 |
SELECT scheduled_job_id_params_seq.nextval
|
683 |
INTO :new.id
|
684 |
FROM dual;
|
685 |
END;
|
686 |
/ |
687 |
|