metacat / src / xmltables-postgres.sql @ 6375
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: 2011-07-28 17:11:14 -0700 (Thu, 28 Jul 2011) $'
|
8 |
* '$Revision: 6375 $'
|
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 |
* Replication -- table to store servers that metacat is replicated to
|
34 |
*/
|
35 |
CREATE SEQUENCE xml_replication_id_seq;
|
36 |
CREATE TABLE xml_replication ( |
37 |
serverid INT8 default nextval('xml_replication_id_seq'), |
38 |
server VARCHAR(512), |
39 |
last_checked DATE,
|
40 |
replicate INT8, |
41 |
datareplicate INT8, |
42 |
systemmetadatareplicate INT8, |
43 |
hub INT8, |
44 |
CONSTRAINT xml_replication_pk PRIMARY KEY (serverid) |
45 |
); |
46 |
|
47 |
INSERT INTO xml_replication (server, replicate, datareplicate, systemmetadatareplicate, hub) VALUES ('localhost', '0', '0', '0', '0'); |
48 |
/*
|
49 |
* ALTER TABLE xml_replication ADD COLUMN systemmetadatareplicate INT8;
|
50 |
*/
|
51 |
|
52 |
/*
|
53 |
* Nodes -- table to store XML Nodes (both elements and attributes)
|
54 |
*/
|
55 |
CREATE SEQUENCE xml_nodes_id_seq;
|
56 |
CREATE TABLE xml_nodes ( |
57 |
nodeid INT8 default nextval('xml_nodes_id_seq'), |
58 |
-- the unique node id (pk)
|
59 |
nodeindex INT8, -- order of nodes within parent
|
60 |
nodetype VARCHAR(20), -- type (DOCUMENT, COMMENT, PI, |
61 |
-- ELEMENT, ATTRIBUTE, TEXT)
|
62 |
nodename VARCHAR(250), -- the name of an element or attribute |
63 |
nodeprefix VARCHAR(50), -- the namespace prefix of the node |
64 |
nodedata TEXT, -- the data for this node (e.g., |
65 |
-- for TEXT it is the content)
|
66 |
parentnodeid INT8, -- index of the parent of this node
|
67 |
rootnodeid INT8, -- index of the root node of this tree
|
68 |
docid VARCHAR(250), -- index to the document id |
69 |
date_created DATE,
|
70 |
date_updated DATE,
|
71 |
nodedatanumerical FLOAT8, -- the data for this node if it is a number
|
72 |
nodedatadate TIMESTAMP, -- the data for this node if it is a date |
73 |
CONSTRAINT xml_nodes_pk PRIMARY KEY (nodeid), |
74 |
CONSTRAINT xml_nodes_root_fk
|
75 |
FOREIGN KEY (rootnodeid) REFERENCES xml_nodes, |
76 |
CONSTRAINT xml_nodes_parent_fk
|
77 |
FOREIGN KEY (parentnodeid) REFERENCES xml_nodes |
78 |
); |
79 |
/*
|
80 |
* Indexes of rootnodeid, parentnodeid, and nodename in xml_nodes
|
81 |
*/
|
82 |
CREATE INDEX xml_nodes_idx1 ON xml_nodes (rootnodeid); |
83 |
CREATE INDEX xml_nodes_idx2 ON xml_nodes (parentnodeid); |
84 |
CREATE INDEX xml_nodes_idx3 ON xml_nodes (nodename); |
85 |
CREATE INDEX xml_nodes_idx4 ON xml_nodes (docid); |
86 |
|
87 |
|
88 |
/*
|
89 |
* Table for storing the nodes for the old revisions of the document and the deleted documents
|
90 |
*/
|
91 |
CREATE TABLE xml_nodes_revisions ( |
92 |
nodeid INT8, -- the unique node id (pk)
|
93 |
nodeindex INT8, -- order of nodes within parent
|
94 |
nodetype VARCHAR(20), -- type (DOCUMENT, COMMENT, PI, |
95 |
-- ELEMENT, ATTRIBUTE, TEXT)
|
96 |
nodename VARCHAR(250), -- the name of an element or attribute |
97 |
nodeprefix VARCHAR(50), -- the namespace prefix of the node |
98 |
nodedata TEXT, -- the data for this node (e.g., |
99 |
-- for TEXT it is the content)
|
100 |
parentnodeid INT8, -- index of the parent of this node
|
101 |
rootnodeid INT8, -- index of the root node of this tree
|
102 |
docid VARCHAR(250), -- index to the document id |
103 |
date_created DATE,
|
104 |
date_updated DATE,
|
105 |
nodedatanumerical FLOAT8, -- the data for this node if it is a number
|
106 |
nodedatadate TIMESTAMP, -- the data for this node if it is a date |
107 |
CONSTRAINT xml_nodes_revisions_pk PRIMARY KEY (nodeid), |
108 |
CONSTRAINT xml_nodes_revisions_root_fk
|
109 |
FOREIGN KEY (rootnodeid) REFERENCES xml_nodes_revisions, |
110 |
CONSTRAINT xml_nodes_revisions_parent_fk
|
111 |
FOREIGN KEY (parentnodeid) REFERENCES xml_nodes_revisions |
112 |
); |
113 |
|
114 |
/*
|
115 |
* Indexes of rootnodeid, parentnodeid, and nodename in xml_nodes_revisions
|
116 |
*/
|
117 |
CREATE INDEX xml_nodes_revisions_idx1 ON xml_nodes_revisions (rootnodeid); |
118 |
CREATE INDEX xml_nodes_revisions_idx2 ON xml_nodes_revisions (parentnodeid); |
119 |
CREATE INDEX xml_nodes_revisions_idx3 ON xml_nodes_revisions (nodename); |
120 |
|
121 |
|
122 |
|
123 |
/*
|
124 |
* XML Catalog -- table to store all external sources for XML documents
|
125 |
*/
|
126 |
CREATE SEQUENCE xml_catalog_id_seq;
|
127 |
CREATE TABLE xml_catalog ( |
128 |
catalog_id INT8 default nextval('xml_catalog_id_seq'), |
129 |
-- the id for this catalog entry
|
130 |
entry_type VARCHAR(500), -- the type of this catalog entry |
131 |
-- (e.g., DTD, XSD, XSL)
|
132 |
source_doctype VARCHAR(500), -- the source public_id for transforms |
133 |
target_doctype VARCHAR(500), -- the target public_id for transforms |
134 |
public_id VARCHAR(500), -- the unique id for this type |
135 |
system_id VARCHAR(1000), -- the local location of the object |
136 |
CONSTRAINT xml_catalog_pk PRIMARY KEY (catalog_id), |
137 |
CONSTRAINT xml_catalog_uk UNIQUE |
138 |
(entry_type, source_doctype, target_doctype, public_id) |
139 |
); |
140 |
|
141 |
/*
|
142 |
* Sequence to get uniqueID for Accession #
|
143 |
*/
|
144 |
CREATE SEQUENCE xml_documents_id_seq;
|
145 |
/*
|
146 |
* Documents -- table to store XML documents
|
147 |
*/
|
148 |
CREATE TABLE xml_documents ( |
149 |
docid VARCHAR(250), -- the document id # |
150 |
rootnodeid INT8, -- reference to root node of the DOM
|
151 |
docname VARCHAR(100), -- usually the root element name |
152 |
doctype VARCHAR(100), -- public id indicating document type |
153 |
user_owner VARCHAR(100), -- the user owned the document |
154 |
user_updated VARCHAR(100), -- the user updated the document |
155 |
server_location INT8, -- the server on which this document resides
|
156 |
rev INT8 default 1, -- the revision number of the document |
157 |
date_created DATE,
|
158 |
date_updated DATE,
|
159 |
public_access INT8, -- flag for public access
|
160 |
catalog_id INT8, -- reference to xml_catalog
|
161 |
CONSTRAINT xml_documents_pk PRIMARY KEY (docid), |
162 |
CONSTRAINT xml_documents_rep_fk
|
163 |
FOREIGN KEY (server_location) REFERENCES xml_replication, |
164 |
CONSTRAINT xml_documents_root_fk
|
165 |
FOREIGN KEY (rootnodeid) REFERENCES xml_nodes, |
166 |
CONSTRAINT xml_documents_catalog_fk
|
167 |
FOREIGN KEY (catalog_id) REFERENCES xml_catalog |
168 |
); |
169 |
|
170 |
/*
|
171 |
* Index of <docid,doctype> in xml_document
|
172 |
*/
|
173 |
CREATE INDEX xml_documents_idx1 ON xml_documents (docid, doctype); |
174 |
CREATE INDEX xml_documents_idx2 ON xml_documents (lower(user_owner)); |
175 |
CREATE INDEX xml_documents_idx3 ON xml_documents (rootnodeid); |
176 |
|
177 |
/*
|
178 |
* Revised Documents -- table to store XML documents saved after an UPDATE
|
179 |
* or DELETE
|
180 |
*/
|
181 |
CREATE SEQUENCE xml_revisions_id_seq;
|
182 |
CREATE TABLE xml_revisions ( |
183 |
revisionid INT8 default nextval('xml_revisions_id_seq'), |
184 |
-- the revision number we are saving
|
185 |
docid VARCHAR(250), -- the document id # |
186 |
rootnodeid INT8, -- reference to root node of the DOM
|
187 |
docname VARCHAR(100), -- usually the root element name |
188 |
doctype VARCHAR(100), -- public id indicating document type |
189 |
user_owner VARCHAR(100), |
190 |
user_updated VARCHAR(100), |
191 |
server_location INT8, |
192 |
rev INT8, |
193 |
date_created DATE,
|
194 |
date_updated DATE,
|
195 |
public_access INT8, -- flag for public access
|
196 |
catalog_id INT8, -- reference to xml_catalog
|
197 |
CONSTRAINT xml_revisions_pk PRIMARY KEY (revisionid), |
198 |
CONSTRAINT xml_revisions_rep_fk
|
199 |
FOREIGN KEY (server_location) REFERENCES xml_replication, |
200 |
CONSTRAINT xml_revisions_root_fk
|
201 |
FOREIGN KEY (rootnodeid) REFERENCES xml_nodes_revisions, |
202 |
CONSTRAINT xml_revisions_catalog_fk
|
203 |
FOREIGN KEY (catalog_id) REFERENCES xml_catalog |
204 |
); |
205 |
|
206 |
CREATE INDEX xml_revisions_idx1 ON xml_revisions (docid); |
207 |
|
208 |
/*
|
209 |
* ACL -- table to store ACL for XML documents by principals
|
210 |
*/
|
211 |
CREATE TABLE xml_access ( |
212 |
docid VARCHAR(250), -- the document id # |
213 |
guid text, -- foreign key to system metadata |
214 |
accessfileid VARCHAR(250), -- the document id # for the access file |
215 |
principal_name VARCHAR(100), -- name of user, group, etc. |
216 |
permission INT8, -- "read", "write", "all"
|
217 |
perm_type VARCHAR(32), -- "allowed" or "denied" |
218 |
perm_order VARCHAR(32), -- "allow first" or "deny first" |
219 |
begin_time DATE, -- the time that permission begins |
220 |
end_time DATE, -- the time that permission ends |
221 |
ticket_count INT8, -- ticket counter for that permission
|
222 |
subtreeid VARCHAR(32), |
223 |
startnodeid INT8, |
224 |
endnodeid INT8, |
225 |
CONSTRAINT xml_access_ck CHECK (begin_time < end_time) |
226 |
); |
227 |
CREATE INDEX xml_access_idx1 ON xml_access (lower(principal_name)); |
228 |
CREATE INDEX xml_access_idx2 ON xml_access (permission); |
229 |
CREATE INDEX xml_access_idx3 ON xml_access (perm_type); |
230 |
CREATE INDEX xml_access_idx4 ON xml_access (perm_order); |
231 |
CREATE INDEX xml_access_idx5 ON xml_access (subtreeid); |
232 |
/*
|
233 |
* ALTER TABLE xml_access ADD COLUMN guid text;
|
234 |
*/
|
235 |
|
236 |
/*
|
237 |
* Index of Nodes -- table to store precomputed paths through tree for
|
238 |
* quick searching in structured searches
|
239 |
*/
|
240 |
CREATE TABLE xml_index ( |
241 |
nodeid INT8, -- the unique node id
|
242 |
path TEXT, -- precomputed path through tree |
243 |
docid VARCHAR(250), -- index to the document id |
244 |
doctype VARCHAR(100), -- public id indicating document type |
245 |
parentnodeid INT8, -- id of the parent of the node represented
|
246 |
-- by this row
|
247 |
CONSTRAINT xml_index_pk PRIMARY KEY (nodeid,path), |
248 |
CONSTRAINT xml_index_nodeid_fk FOREIGN KEY (nodeid) REFERENCES xml_nodes, |
249 |
CONSTRAINT xml_index_docid_fk
|
250 |
FOREIGN KEY (docid) REFERENCES xml_documents |
251 |
); |
252 |
|
253 |
/*
|
254 |
* Index of the paths in xml_index
|
255 |
*/
|
256 |
CREATE INDEX xml_index_idx1 ON xml_index (path); |
257 |
CREATE INDEX xml_index_idx2 ON xml_index (docid); |
258 |
CREATE INDEX xml_index_idx3 ON xml_index (nodeid); |
259 |
|
260 |
CREATE SEQUENCE xml_relation_id_seq;
|
261 |
CREATE TABLE xml_relation ( |
262 |
relationid INT8 default nextval('xml_relation_id_seq') PRIMARY KEY, |
263 |
-- unique id
|
264 |
docid VARCHAR(250) , -- the docid of the package file |
265 |
-- that this relation came from
|
266 |
packagetype VARCHAR(250), -- the type of the package |
267 |
subject VARCHAR(512) NOT NULL, -- the subject of the relation |
268 |
subdoctype VARCHAR(128), -- the doctype of the subject |
269 |
relationship VARCHAR(128) NOT NULL,-- the relationship type |
270 |
object VARCHAR(512) NOT NULL, -- the object of the relation |
271 |
objdoctype VARCHAR(128), -- the doctype of the object |
272 |
CONSTRAINT xml_relation_uk UNIQUE (docid, subject, relationship, object), |
273 |
CONSTRAINT xml_relation_docid_fk
|
274 |
FOREIGN KEY (docid) REFERENCES xml_documents |
275 |
); |
276 |
|
277 |
/*
|
278 |
* Table used to store all document identifiers in metacat. Each identifier
|
279 |
* has a globally unique, unconstrained string, which we will refer to as a
|
280 |
* GUID, and a local metacat identifier, which consists of the docid
|
281 |
* and revision fields. Each row maps one global identifier to the local
|
282 |
* identifier (docid) used within metacat.
|
283 |
*/
|
284 |
CREATE TABLE identifier ( |
285 |
guid text, -- the globally unique string identifier |
286 |
docid VARCHAR(250), -- the local document id # |
287 |
rev INT8, -- the revision part of the local identifier
|
288 |
CONSTRAINT identifier_pk PRIMARY KEY (guid) |
289 |
); |
290 |
|
291 |
/*
|
292 |
* Table used to store all document identifiers for system metadata objects
|
293 |
* similar restraints to identifier. Cannot use identifier table for this
|
294 |
* purpose because then you have to worry about whether you insert the
|
295 |
* data first or the systemMetadata first.
|
296 |
*/
|
297 |
CREATE TABLE systemMetadata ( |
298 |
guid text, -- the globally unique string identifier of the object that the system metadata describes |
299 |
date_uploaded TIMESTAMP, -- the date/time the document was first submitted |
300 |
rights_holder VARCHAR(250), --the user who has rights to the document, usually the first persons to upload it |
301 |
checksum VARCHAR(512), --the checksum of the doc using the given algorithm (see below) |
302 |
checksum_algorithm VARCHAR(250), --the algorithm used to calculate the checksum |
303 |
origin_member_node VARCHAR(250), --the member node where the document was first uploaded |
304 |
authoritive_member_node VARCHAR(250), --the member node that currently controls the document |
305 |
date_modified TIMESTAMP, -- the last date/time that the file was changed |
306 |
submitter VARCHAR(256), -- the user who originally submitted the doc |
307 |
object_format VARCHAR(256), --the format of the object |
308 |
size VARCHAR(256), --the size of the object |
309 |
replication_allowed boolean, -- replication allowed |
310 |
number_replicas INT8, -- the number of replicas allowed
|
311 |
obsoletes text, -- the identifier that this record obsoletes |
312 |
obsoleted_by text, -- the identifier of the record that replaces this record |
313 |
CONSTRAINT systemMetadata_pk PRIMARY KEY (guid) |
314 |
); |
315 |
/*
|
316 |
* For devs to remove docid, rev
|
317 |
* ALTER TABLE systemMetadata DROP COLUMN docid;
|
318 |
* ALTER TABLE systemMetadata DROP COLUMN rev;
|
319 |
* ALTER TABLE systemMetadata ADD COLUMN replication_allowed boolean;
|
320 |
* ALTER TABLE systemMetadata ADD COLUMN number_replicas INT8;
|
321 |
*/
|
322 |
|
323 |
/*
|
324 |
* Table used to store system metadata ORE map information
|
325 |
*/
|
326 |
CREATE TABLE systemMetadataMap ( |
327 |
guid text, -- the globally unique string identifier of the object that the system metadata describes |
328 |
target_guid text, -- the globally unique string identifier of the other object |
329 |
CONSTRAINT systemMetadataMap_fk
|
330 |
FOREIGN KEY (guid) REFERENCES systemMetadata |
331 |
); |
332 |
|
333 |
CREATE TABLE systemMetadataReplicationPolicy ( |
334 |
guid text, -- the globally unique string identifier of the object that the system metadata describes |
335 |
member_node VARCHAR(250), -- replication member node |
336 |
policy text, -- the policy (preferred, blocked, etc...TBD) |
337 |
CONSTRAINT systemMetadataReplicationPolicy_fk
|
338 |
FOREIGN KEY (guid) REFERENCES systemMetadata |
339 |
); |
340 |
|
341 |
CREATE TABLE systemMetadataReplicationStatus ( |
342 |
guid text, -- the globally unique string identifier of the object that the system metadata describes |
343 |
member_node VARCHAR(250), -- replication member node |
344 |
status VARCHAR(250), -- replication status |
345 |
date_verified TIMESTAMP, -- the date replication was verified |
346 |
CONSTRAINT systemMetadataReplicationStatus_fk
|
347 |
FOREIGN KEY (guid) REFERENCES systemMetadata |
348 |
); |
349 |
|
350 |
/*
|
351 |
* accesssubtree -- table to store access subtree info
|
352 |
*/
|
353 |
CREATE TABLE xml_accesssubtree ( |
354 |
docid VARCHAR(250), -- the document id # |
355 |
rev INT8 default 1, --the revision number of the docume |
356 |
controllevel VARCHAR(50), -- the level it control -- document or subtree |
357 |
subtreeid VARCHAR(250), -- the subtree id |
358 |
startnodeid INT8, -- the start node id of access subtree
|
359 |
endnodeid INT8, -- the end node if of access subtree
|
360 |
CONSTRAINT xml_accesssubtree_docid_fk
|
361 |
FOREIGN KEY (docid) REFERENCES xml_documents |
362 |
); |
363 |
|
364 |
/*
|
365 |
* Returnfields -- table to store combinations of returnfields requested
|
366 |
* and the number of times this table is accessed
|
367 |
*/
|
368 |
CREATE SEQUENCE xml_returnfield_id_seq;
|
369 |
CREATE TABLE xml_returnfield ( |
370 |
returnfield_id INT8 default nextval('xml_returnfield_id_seq'), -- the id for this returnfield entry |
371 |
returnfield_string VARCHAR(2000), -- the returnfield string |
372 |
usage_count INT8, -- the number of times this string has been requested
|
373 |
CONSTRAINT xml_returnfield_pk PRIMARY KEY (returnfield_id) |
374 |
); |
375 |
CREATE INDEX xml_returnfield_idx1 ON xml_returnfield(returnfield_string); |
376 |
|
377 |
/*
|
378 |
* Queryresults -- table to store queryresults for a given docid
|
379 |
* and returnfield_id
|
380 |
*/
|
381 |
CREATE SEQUENCE xml_queryresult_id_seq;
|
382 |
CREATE TABLE xml_queryresult( |
383 |
queryresult_id INT8 default nextval('xml_queryresult_id_seq'), -- id for this entry |
384 |
returnfield_id INT8, -- id for the returnfield corresponding to this entry
|
385 |
docid VARCHAR(250), -- docid of the document |
386 |
queryresult_string TEXT, -- resultant text generated for this docid and given |
387 |
-- returnfield
|
388 |
CONSTRAINT xml_queryresult_pk PRIMARY KEY (queryresult_id), |
389 |
CONSTRAINT xml_queryresult_searchid_fk
|
390 |
FOREIGN KEY (returnfield_id) REFERENCES xml_returnfield |
391 |
); |
392 |
|
393 |
CREATE INDEX xml_queryresult_idx1 ON xml_queryresult (returnfield_id, docid); |
394 |
|
395 |
/*
|
396 |
* Logging -- table to store metadata and data access log
|
397 |
*/
|
398 |
CREATE SEQUENCE access_log_id_seq;
|
399 |
CREATE TABLE access_log ( |
400 |
entryid INT8 default nextval ('access_log_id_seq'), -- the identifier for the log event |
401 |
ip_address VARCHAR(512), -- the ip address inititiating the event |
402 |
principal VARCHAR(512), -- the user initiiating the event |
403 |
docid VARCHAR(250), -- the document id # |
404 |
event VARCHAR(512), -- the code symbolizing the event type |
405 |
date_logged TIMESTAMP, -- the datetime on which the event occurred |
406 |
CONSTRAINT access_log_pk PRIMARY KEY (entryid) |
407 |
); |
408 |
|
409 |
|
410 |
/*
|
411 |
* Table for indexing the paths specified the administrator in metacat.properties
|
412 |
*/
|
413 |
|
414 |
CREATE SEQUENCE xml_path_index_id_seq;
|
415 |
CREATE TABLE xml_path_index ( |
416 |
nodeid INT8 default nextval('xml_path_index_id_seq'), |
417 |
docid VARCHAR(250), -- the document id |
418 |
path VARCHAR(1000), -- precomputed path through tree |
419 |
nodedata TEXT, -- the data for this node (e.g., |
420 |
-- for TEXT it is the content)
|
421 |
nodedatanumerical FLOAT8, -- the data for this node if it is a number
|
422 |
nodedatadate TIMESTAMP, -- the data for this node if it is a date |
423 |
parentnodeid INT8, -- id of the parent of the node represented
|
424 |
-- by this row
|
425 |
CONSTRAINT xml_path_index_pk PRIMARY KEY (nodeid), |
426 |
CONSTRAINT xml_path_index_docid_fk
|
427 |
FOREIGN KEY (docid) REFERENCES xml_documents |
428 |
); |
429 |
|
430 |
/*
|
431 |
* Indexes of path, nodedata and nodedatanumerical in xml_path_index
|
432 |
*/
|
433 |
CREATE INDEX xml_path_index_idx1 ON xml_path_index (path); |
434 |
CREATE INDEX xml_path_index_idx2 ON xml_path_index (nodedata); |
435 |
CREATE INDEX xml_path_index_idx3 ON xml_path_index (nodedatanumerical); |
436 |
CREATE INDEX xml_path_index_idx4 ON xml_path_index (upper(nodedata)); |
437 |
CREATE INDEX xml_path_index_idx5 ON xml_path_index (nodedatadate); |
438 |
|
439 |
/*
|
440 |
* harvest_site_schedule -- table to store harvest sites and schedule info
|
441 |
*/
|
442 |
CREATE TABLE harvest_site_schedule ( |
443 |
site_schedule_id INT8, -- unique id
|
444 |
documentlisturl VARCHAR(255), -- URL of the site harvest document list |
445 |
ldapdn VARCHAR(255), -- LDAP distinguished name for site account |
446 |
datenextharvest DATE, -- scheduled date of next harvest |
447 |
datelastharvest DATE, -- recorded date of last harvest |
448 |
updatefrequency INT8, -- the harvest update frequency
|
449 |
unit VARCHAR(50), -- update unit -- days weeks or months |
450 |
contact_email VARCHAR(50), -- email address of the site contact person |
451 |
ldappwd VARCHAR(20), -- LDAP password for site account |
452 |
CONSTRAINT harvest_site_schedule_pk PRIMARY KEY (site_schedule_id) |
453 |
); |
454 |
|
455 |
/*
|
456 |
* harvest_log -- table to log entries for harvest operations
|
457 |
*/
|
458 |
CREATE TABLE harvest_log ( |
459 |
harvest_log_id INT8, -- unique id
|
460 |
harvest_date DATE, -- date of the current harvest |
461 |
status INT8, -- non-zero indicates an error status
|
462 |
message VARCHAR(1000), -- text message for this log entry |
463 |
harvest_operation_code VARCHAR(30), -- the type of harvest operation |
464 |
site_schedule_id INT8, -- site schedule id, or 0 if no site
|
465 |
CONSTRAINT harvest_log_pk PRIMARY KEY (harvest_log_id) |
466 |
); |
467 |
|
468 |
/*
|
469 |
* harvest_detail_log -- table to log detailed info about documents that
|
470 |
* generated errors during the harvest
|
471 |
*/
|
472 |
CREATE TABLE harvest_detail_log ( |
473 |
detail_log_id INT8, -- unique id
|
474 |
harvest_log_id INT8, -- ponter to the related log entry
|
475 |
scope VARCHAR(50), -- document scope |
476 |
identifier INT8, -- document identifier
|
477 |
revision INT8, -- document revision
|
478 |
document_url VARCHAR(255), -- document URL |
479 |
error_message VARCHAR(1000), -- text error message |
480 |
document_type VARCHAR(100), -- document type |
481 |
CONSTRAINT harvest_detail_log_pk PRIMARY KEY (detail_log_id), |
482 |
CONSTRAINT harvest_detail_log_fk
|
483 |
FOREIGN KEY (harvest_log_id) REFERENCES harvest_log |
484 |
); |
485 |
|
486 |
/*
|
487 |
* db_version -- table to store the version history of this database
|
488 |
*/
|
489 |
CREATE SEQUENCE db_version_id_seq;
|
490 |
CREATE TABLE db_version ( |
491 |
db_version_id INT8 default nextval ('db_version_id_seq'), -- the identifier for the version |
492 |
version VARCHAR(250), -- the version number |
493 |
status INT8, -- status of the version
|
494 |
date_created TIMESTAMP, -- the datetime on which the version was created |
495 |
CONSTRAINT db_version_pk PRIMARY KEY (db_version_id) |
496 |
); |
497 |
|
498 |
/*
|
499 |
* scheduled_job -- table to store scheduled jobs
|
500 |
*/
|
501 |
CREATE SEQUENCE scheduled_job_id_seq;
|
502 |
CREATE TABLE scheduled_job ( |
503 |
id INT8 NOT NULL default nextval('scheduled_job_id_seq'), |
504 |
date_created TIMESTAMP NOT NULL, |
505 |
date_updated TIMESTAMP NOT NULL, |
506 |
status VARCHAR(64) NOT NULL, |
507 |
name VARCHAR(512) NOT NULL, |
508 |
trigger_name VARCHAR(512) NOT NULL, |
509 |
group_name VARCHAR(512) NOT NULL, |
510 |
class_name VARCHAR(1024) NOT NULL, |
511 |
start_time TIMESTAMP NOT NULL, |
512 |
end_time TIMESTAMP,
|
513 |
interval_value INT NOT NULL, |
514 |
interval_unit VARCHAR(8) NOT NULL, |
515 |
CONSTRAINT scheduled_job_pk PRIMARY KEY (id), |
516 |
CONSTRAINT scheduled_job_uk UNIQUE (name) |
517 |
); |
518 |
|
519 |
/*
|
520 |
* scheduled_job_params -- table to store scheduled jobs
|
521 |
*/
|
522 |
CREATE SEQUENCE scheduled_job_params_id_seq;
|
523 |
CREATE TABLE scheduled_job_params ( |
524 |
id INT8 NOT NULL default nextval('scheduled_job_params_id_seq'), |
525 |
date_created TIMESTAMP NOT NULL, |
526 |
date_updated TIMESTAMP NOT NULL, |
527 |
status VARCHAR(64) NOT NULL, |
528 |
job_id INT8 NOT NULL, |
529 |
key VARCHAR(64) NOT NULL, |
530 |
value VARCHAR(1024) NOT NULL, |
531 |
CONSTRAINT scheduled_job_params_pk PRIMARY KEY (id), |
532 |
CONSTRAINT scheduled_job_params_fk
|
533 |
FOREIGN KEY (job_id) REFERENCES scheduled_job(id) |
534 |
); |