Project

General

Profile

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: daigle $'
7
 *     '$Date: 2008-10-02 14:46:50 -0700 (Thu, 02 Oct 2008) $'
8
 * '$Revision: 4415 $'
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 identifier_id_seq;
36
DROP SEQUENCE access_log_id_seq;
37
DROP SEQUENCE xml_returnfield_id_seq;
38
DROP SEQUENCE xml_queryresult_id_seq;
39
DROP SEQUENCE xml_path_index_id_seq;
40
DROP SEQUENCE db_version_id_seq;
41

    
42
/* Drop triggers are not necessary */
43
DROP TRIGGER xml_nodes_before_insert;
44
DROP TRIGGER xml_revisions_before_insert;
45
DROP TRIGGER xml_catalog_before_insert;
46
DROP TRIGGER xml_relation_before_insert;
47
DROP TRIGGER xml_replication_before_insert;
48
DROP TRIGGER identifier_before_insert;
49
DROP TRIGGER access_log_before_insert;
50
DROP TRIGGER xml_returnfield_before_insert;
51
DROP TRIGGER xml_queryresult_before_insert;
52
DROP TRIGGER db_version_before_insert;
53

    
54

    
55
DROP TABLE xml_index;
56
DROP TABLE xml_access;
57
DROP TABLE xml_accesssubtree;
58
DROP TABLE xml_revisions;
59
DROP TABLE xml_relation;
60
DROP TABLE xml_documents CASCADE CONSTRAINTS;
61
DROP TABLE xml_nodes;
62
DROP TABLE xml_nodes_revisions;
63
DROP TABLE xml_replication;
64
DROP TABLE xml_catalog;
65
DROP TABLE identifier;
66
DROP TABLE access_log;
67
DROP TABLE harvest_site_schedule;
68
DROP TABLE harvest_detail_log;
69
DROP TABLE harvest_log;
70
DROP TABLE xml_queryresult;
71
DROP TABLE xml_returnfield;
72
DROP TABLE xml_path_index;
73
DROP TABLE db_version;
74

    
75
/*
76
 *Replication -- table to store servers that metacat is replicated to
77
 */
78
CREATE TABLE xml_replication (
79
  serverid      NUMBER(20),
80
  server        VARCHAR2(512),
81
  last_checked  DATE,
82
  replicate     NUMBER(1),
83
  datareplicate NUMBER(1),
84
  hub NUMBER(1),
85
  CONSTRAINT xml_replication_pk PRIMARY KEY (serverid)
86
);
87

    
88
CREATE SEQUENCE xml_replication_id_seq;
89
CREATE TRIGGER xml_replication_before_insert
90
BEFORE INSERT ON xml_replication FOR EACH ROW
91
BEGIN
92
  SELECT xml_replication_id_seq.nextval
93
    INTO :new.serverid
94
    FROM dual;
95
END;
96
/
97

    
98
INSERT INTO xml_replication (server, replicate, datareplicate, hub)
99
 VALUES ('localhost', '0', '0', '0');
100

    
101
/*
102
 * Nodes -- table to store XML Nodes (both elements and attributes)
103
 */
104
CREATE SEQUENCE xml_nodes_id_seq;
105
CREATE TABLE xml_nodes (
106
	nodeid		NUMBER(20),	-- the unique node id (pk)
107
	nodeindex	NUMBER(10),	-- order of nodes within parent
108
	nodetype	VARCHAR2(20),	-- type (DOCUMENT, COMMENT, PI,
109
					-- ELEMENT, ATTRIBUTE, TEXT)
110
	nodename	VARCHAR2(250),	-- the name of an element or attribute
111
	nodeprefix	VARCHAR2(50),	-- the namespace prefix of an element
112
                                        -- or attribute
113
	nodedata	VARCHAR2(4000), -- the data for this node (e.g.,
114
					-- for TEXT it is the content)
115
	parentnodeid	NUMBER(20),	-- index of the parent of this node
116
	rootnodeid	NUMBER(20),	-- index of the root node of this tree
117
	docid		VARCHAR2(250),	-- index to the document id
118
	date_created	DATE,
119
	date_updated	DATE,
120
	nodedatanumerical NUMBER,       -- the data for this node if
121
					-- it is a number
122
   CONSTRAINT xml_nodes_pk PRIMARY KEY (nodeid),
123
   CONSTRAINT xml_nodes_root_fk
124
		FOREIGN KEY (rootnodeid) REFERENCES xml_nodes,
125
   CONSTRAINT xml_nodes_parent_fk
126
		FOREIGN KEY (parentnodeid) REFERENCES xml_nodes
127
);
128
CREATE TRIGGER xml_nodes_before_insert
129
BEFORE INSERT ON xml_nodes FOR EACH ROW
130
BEGIN
131
  SELECT xml_nodes_id_seq.nextval
132
    INTO :new.nodeid
133
    FROM dual;
134
END;
135
/
136

    
137

    
138
/*
139
 * Indexes of rootnodeid, parentnodeid, and nodename in xml_nodes
140
 */
141
CREATE INDEX xml_nodes_idx1 ON xml_nodes (rootnodeid);
142
CREATE INDEX xml_nodes_idx2 ON xml_nodes (parentnodeid);
143
CREATE INDEX xml_nodes_idx3 ON xml_nodes (nodename);
144
CREATE INDEX xml_nodes_idx4 ON xml_nodes (docid);
145

    
146

    
147
/*
148
 * xml_nodes_revisions -- table to store nodes from xml_nodes which are of old revisions and deleted document
149
 */
150

    
151
CREATE TABLE xml_nodes_revisions (
152
        nodeid          NUMBER(20),     -- the unique node id (pk)
153
        nodeindex       NUMBER(10),     -- order of nodes within parent
154
        nodetype        VARCHAR2(20),   -- type (DOCUMENT, COMMENT, PI,
155
                                        -- ELEMENT, ATTRIBUTE, TEXT)
156
        nodename        VARCHAR2(250),  -- the name of an element or attribute
157
        nodeprefix      VARCHAR2(50),   -- the namespace prefix of an element
158
                                        -- or attribute
159
        nodedata        VARCHAR2(4000), -- the data for this node (e.g.,
160
                                        -- for TEXT it is the content)
161
        parentnodeid    NUMBER(20),     -- index of the parent of this node
162
        rootnodeid      NUMBER(20),     -- index of the root node of this tree
163
        docid           VARCHAR2(250),  -- index to the document id
164
        date_created    DATE,
165
        date_updated    DATE,
166
        nodedatanumerical NUMBER,       -- the data for this node if
167
                                        -- it is a number
168
   CONSTRAINT xml_nodes_revisions_pk PRIMARY KEY (nodeid),
169
   CONSTRAINT xml_nodes_revisions_root_fk
170
                FOREIGN KEY (rootnodeid) REFERENCES xml_nodes_revisions,
171
   CONSTRAINT xml_nodes_revisions_parent_fk
172
                FOREIGN KEY (parentnodeid) REFERENCES xml_nodes_revisions
173
);
174

    
175

    
176
/*
177
 * Indexes of rootnodeid, parentnodeid, and nodename in xml_nodes_revision
178
 */
179
CREATE INDEX xml_nodes_revisions_idx1 ON xml_nodes_revisions (rootnodeid);
180
CREATE INDEX xml_nodes_revisions_idx2 ON xml_nodes_revisions (parentnodeid);
181
CREATE INDEX xml_nodes_revisions_idx3 ON xml_nodes_revisions (nodename);
182

    
183
/*
184
 * XML Catalog -- table to store all external sources for XML documents
185
 */
186
CREATE TABLE xml_catalog (
187
	catalog_id	NUMBER(20),	-- the id for this catalog entry
188
	entry_type	VARCHAR2(500),	-- the type of this catalog entry
189
					-- (e.g., DTD, XSD, XSL)
190
	source_doctype	VARCHAR2(500),	-- the source public_id for transforms
191
	target_doctype	VARCHAR2(500),	-- the target public_id for transforms
192
	public_id	VARCHAR2(500),	-- the unique id for this type
193
	system_id	VARCHAR2(1000),	-- the local location of the object
194
   CONSTRAINT xml_catalog_pk PRIMARY KEY (catalog_id),
195
   CONSTRAINT xml_catalog_uk UNIQUE
196
		(entry_type, source_doctype, target_doctype, public_id)
197
);
198

    
199
CREATE SEQUENCE xml_catalog_id_seq;
200

    
201
CREATE TRIGGER xml_catalog_before_insert
202
BEFORE INSERT ON xml_catalog FOR EACH ROW
203
BEGIN
204
  SELECT xml_catalog_id_seq.nextval
205
    INTO :new.catalog_id
206
    FROM dual;
207
END;
208
/
209

    
210
/*
211
 * Documents -- table to store XML documents
212
 */
213
CREATE TABLE xml_documents (
214
	docid		VARCHAR2(250),	-- the document id #
215
	rootnodeid	NUMBER(20),	-- reference to root node of the DOM
216
	docname		VARCHAR2(100),	-- usually the root element name
217
	doctype		VARCHAR2(100),	-- public id indicating document type
218
	user_owner	VARCHAR2(100),	-- the user owned the document
219
	user_updated	VARCHAR2(100),	-- the user updated the document
220
	server_location NUMBER(20),	-- the server on which this document
221
                                        -- originates
222
	rev 		NUMBER(10) DEFAULT 1,--the revision number of the docume
223
	date_created	DATE,
224
	date_updated	DATE,
225
	public_access	NUMBER(1),	-- flag for public access
226
        catalog_id      NUMBER(20),	-- reference to xml_catalog
227
   CONSTRAINT xml_documents_pk PRIMARY KEY (docid),
228
   CONSTRAINT xml_documents_rep_fk
229
    		FOREIGN KEY (server_location) REFERENCES xml_replication,
230
   CONSTRAINT xml_documents_root_fk
231
		FOREIGN KEY (rootnodeid) REFERENCES xml_nodes,
232
   CONSTRAINT xml_documents_catalog_fk
233
		FOREIGN KEY (catalog_id) REFERENCES xml_catalog
234
);
235

    
236
/*
237
 * Index of <docid,doctype> in xml_document
238
 */
239
CREATE INDEX xml_documents_idx1 ON xml_documents (docid, doctype);
240
CREATE INDEX xml_documents_idx2 ON xml_documents (lower(user_owner));
241
CREATE INDEX xml_documents_idx3 ON xml_documents (rootnodeid);
242

    
243
/*
244
 * Revised Documents -- table to store XML documents saved after an UPDATE
245
 *                    or DELETE
246
 */
247
CREATE TABLE xml_revisions (
248
	revisionid	NUMBER(20),	-- the revision number we are saving
249
	docid		VARCHAR2(250),	-- the document id #
250
	rootnodeid	NUMBER(20),	-- reference to root node of the DOM
251
	docname		VARCHAR2(100),	-- usually the root element name
252
	doctype		VARCHAR2(100),	-- public id indicating document type
253
	user_owner	VARCHAR2(100),
254
	user_updated	VARCHAR2(100),
255
	server_location NUMBER(20),
256
	rev		NUMBER(10),
257
	date_created	DATE,
258
	date_updated	DATE,
259
	public_access	NUMBER(1),	-- flag for public access
260
        catalog_id      NUMBER(20),	-- reference to xml_catalog
261
   CONSTRAINT xml_revisions_pk PRIMARY KEY (revisionid),
262
   CONSTRAINT xml_revisions_rep_fk
263
		FOREIGN KEY (server_location) REFERENCES xml_replication,
264
   CONSTRAINT xml_revisions_root_fk
265
		FOREIGN KEY (rootnodeid) REFERENCES xml_nodes_revisions,
266
   CONSTRAINT xml_revisions_catalog_fk
267
		FOREIGN KEY (catalog_id) REFERENCES xml_catalog
268
);
269

    
270
CREATE SEQUENCE xml_revisions_id_seq;
271

    
272
CREATE TRIGGER xml_revisions_before_insert
273
BEFORE INSERT ON xml_revisions FOR EACH ROW
274
BEGIN
275
  SELECT xml_revisions_id_seq.nextval
276
    INTO :new.revisionid
277
    FROM dual;
278
END;
279
/
280

    
281
/*
282
 * ACL -- table to store ACL for XML documents by principals
283
 */
284
CREATE TABLE xml_access (
285
	docid		VARCHAR2(250),	-- the document id #
286
	accessfileid	VARCHAR2(250),	-- the document id # for the access file
287
	principal_name	VARCHAR2(100),	-- name of user, group, etc.
288
	permission	NUMBER(1),	-- "read", "write", "all"
289
	perm_type	VARCHAR2(32),	-- "allowed" or "denied"
290
	perm_order	VARCHAR2(32),	-- "allow first" or "deny first"
291
	begin_time	DATE,		-- the time that permission begins
292
	end_time	DATE,		-- the time that permission ends
293
	ticket_count	NUMBER(5),	-- ticket counter for that permission
294
  subtreeid VARCHAR2(32), -- sub tree id
295
  startnodeid NUMBER(20), -- start node for sub tree
296
  endnodeid NUMBER(20),    -- end node for sub tree
297
   CONSTRAINT xml_access_ck CHECK (begin_time < end_time),
298
   CONSTRAINT xml_access_accessfileid_fk
299
		FOREIGN KEY (accessfileid) REFERENCES xml_documents
300
);
301
CREATE INDEX xml_access_idx1 ON xml_access (lower(principal_name));
302
CREATE INDEX xml_access_idx2 ON xml_access (permission);
303
CREATE INDEX xml_access_idx3 ON xml_access (perm_type);
304
CREATE INDEX xml_access_idx4 ON xml_access (perm_order);
305
CREATE INDEX xml_access_idx5 ON xml_access (subtreeid);
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(1000), -- 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
        parentnodeid    NUMBER(20),     -- index of the parent of this node
343
        CONSTRAINT xml_path_index_pk PRIMARY KEY (nodeid),
344
        CONSTRAINT xml_path_index_docid_fk FOREIGN KEY (docid) REFERENCES xml_documents
345
 );                                                                                        
346

    
347

    
348
/*
349
 * create sequence an trigger
350
 */
351
CREATE SEQUENCE xml_path_index_id_seq;                                                                                                                                                             
352
CREATE TRIGGER xml_path_index_before_insert
353
BEFORE INSERT ON xml_path_index FOR EACH ROW
354
BEGIN
355
  SELECT xml_path_index_id_seq.nextval
356
    INTO :new.nodeid
357
    FROM dual;
358
END;
359
/
360

    
361

    
362
/*
363
 * Index of the path, nodedata, nodedatanumerical in xml_path_index
364
 */
365
CREATE INDEX xml_path_index_idx1 ON xml_path_index (path);
366
CREATE INDEX xml_path_index_idx2 ON xml_path_index (nodedata);
367
CREATE INDEX xml_path_index_idx3 ON xml_path_index (nodedatanumerical);
368

    
369

    
370

    
371
CREATE TABLE xml_relation (
372
	relationid    NUMBER(20) PRIMARY KEY, -- unique id
373
	docid         VARCHAR2(250),          -- the docid of the package file
374
	                                      -- that this relation came from
375
        packagetype   VARCHAR2(250),          -- the type of the package
376
	subject       VARCHAR2(512) NOT NULL, -- the subject of the relation
377
	subdoctype    VARCHAR2(128),          -- the doctype of the subject
378
	relationship  VARCHAR2(128)  NOT NULL,-- the relationship type
379
	object        VARCHAR2(512) NOT NULL, -- the object of the relation
380
	objdoctype    VARCHAR2(128),          -- the doctype of the object
381
	CONSTRAINT xml_relation_uk UNIQUE (docid, subject, relationship, object),
382
	CONSTRAINT xml_relation_docid_fk
383
		FOREIGN KEY (docid) REFERENCES xml_documents
384
  );
385

    
386
CREATE SEQUENCE xml_relation_id_seq;
387

    
388
CREATE TRIGGER xml_relation_before_insert
389
BEFORE INSERT ON xml_relation FOR EACH ROW
390
BEGIN
391
  SELECT xml_relation_id_seq.nextval
392
    INTO :new.relationid
393
    FROM dual;
394
END;
395
/
396

    
397
/*
398
 * Table used to store all document identifiers in metacat.  Each identifier
399
 * consists of 4 subparts, an authority, namespace, object, and revision as
400
 * defined in the LSID specification.
401
 */
402
CREATE SEQUENCE identifier_id_seq;
403
CREATE TABLE identifier (
404
   id        NUMBER(20) PRIMARY KEY, -- primary key
405
   authority VARCHAR2(255),  -- the authority issuing the identifier
406
   namespace VARCHAR2(255),  -- the namespace qualifying the identifier
407
   object    VARCHAR2(255),  -- the local part of the identifier for a particular object
408
   revision  VARCHAR2(255)   -- the revision part of the identifier
409
);
410
CREATE TRIGGER identifier_before_insert
411
BEFORE INSERT ON identifier FOR EACH ROW
412
BEGIN
413
  SELECT identifier_id_seq.nextval
414
    INTO :new.id
415
    FROM dual;
416
END;
417
/
418

    
419
/*
420
 * accesssubtree -- table to store access subtree info
421
 */
422
CREATE TABLE xml_accesssubtree (
423
	docid		VARCHAR2(250),	-- the document id #
424
  rev 		NUMBER(10) DEFAULT 1, --the revision number of the docume
425
  controllevel VARCHAR2(50), -- the level it control -- document or subtree
426
  subtreeid VARCHAR2(250), -- the subtree id
427
	startnodeid	NUMBER(20),	-- the start node id of access subtree
428
  endnodeid NUMBER(20), -- the end node if of access subtree
429
  CONSTRAINT xml_accesssubtree_docid_fk
430
		FOREIGN KEY (docid) REFERENCES xml_documents
431
);
432

    
433
/*
434
 * Returnfields -- table to store combinations of returnfields requested
435
 *		   and the number of times this table is accessed
436
 */
437
CREATE TABLE xml_returnfield (
438
        returnfield_id     NUMBER(20),     -- the id for this returnfield entry
439
        returnfield_string VARCHAR2(2000), -- the returnfield string
440
        usage_count        NUMBER(20),     -- the number of times this string
441
                                           -- has been requested
442
        CONSTRAINT xml_returnfield_pk PRIMARY KEY (returnfield_id)
443
);
444
CREATE INDEX xml_returnfield_idx1 ON xml_returnfield(returnfield_string);
445

    
446
CREATE SEQUENCE xml_returnfield_id_seq;
447

    
448
CREATE TRIGGER xml_returnfield_before_insert
449
BEFORE INSERT ON xml_returnfield FOR EACH ROW
450
BEGIN
451
  SELECT xml_returnfield_id_seq.nextval
452
    INTO :new.returnfield_id
453
    FROM dual;
454
END;
455
/
456

    
457
/*
458
 * Queryresults -- table to store queryresults for a given docid
459
 * and returnfield_id
460
 */
461
CREATE TABLE xml_queryresult(
462
  queryresult_id       NUMBER(20),     -- id for this entry
463
  returnfield_id       NUMBER(20),     -- id for the returnfield corresponding to this entry
464
  docid                VARCHAR2(250),  -- docid of the document
465
  queryresult_string   VARCHAR2(4000), -- resultant text generated for this docid and given
466
  				       -- returnfield
467
  CONSTRAINT xml_queryresult_pk PRIMARY KEY (queryresult_id),
468
  CONSTRAINT xml_queryresult_searchid_fk
469
               FOREIGN KEY (returnfield_id) REFERENCES xml_returnfield
470
);
471

    
472
CREATE INDEX xml_queryresult_idx1 ON xml_queryresult (returnfield_id, docid);
473

    
474
CREATE SEQUENCE xml_queryresult_id_seq;
475

    
476
CREATE TRIGGER xml_queryresult_before_insert
477
BEFORE INSERT ON xml_queryresult FOR EACH ROW
478
BEGIN
479
 SELECT xml_queryresult_id_seq.nextval
480
   INTO :new.queryresult_id
481
   FROM dual;
482
END;
483
/
484

    
485

    
486

    
487

    
488
/*
489
 * Logging -- table to store metadata and data access log
490
 */
491
CREATE TABLE access_log (
492
  entryid       NUMBER(20),     -- the identifier for the log event
493
  ip_address    VARCHAR2(512),  -- the ip address inititiating the event
494
  principal     VARCHAR2(512),  -- the user initiiating the event
495
  docid         VARCHAR2(250),	-- the document id #
496
  event         VARCHAR2(512),  -- the code symbolizing the event type
497
  date_logged   DATE,           -- the datetime on which the event occurred
498
  CONSTRAINT access_log_pk PRIMARY KEY (entryid)
499
);
500

    
501
CREATE SEQUENCE access_log_id_seq;
502
CREATE TRIGGER access_log_before_insert
503
BEFORE INSERT ON access_log FOR EACH ROW
504
BEGIN
505
  SELECT access_log_id_seq.nextval
506
    INTO :new.entryid
507
    FROM dual;
508
END;
509
/
510

    
511
/*
512
 * harvest_site_schedule -- table to store harvest sites and schedule info
513
 */
514
CREATE TABLE harvest_site_schedule (
515
  site_schedule_id NUMBER,         -- unique id
516
  documentlisturl  VARCHAR2(255),  -- URL of the site harvest document list
517
  ldapdn           VARCHAR2(255),  -- LDAP distinguished name for site account
518
  datenextharvest  DATE,           -- scheduled date of next harvest
519
  datelastharvest  DATE,           -- recorded date of last harvest
520
  updatefrequency  NUMBER,         -- the harvest update frequency
521
  unit             VARCHAR2(50),   -- update unit -- days weeks or months
522
  contact_email    VARCHAR2(50),   -- email address of the site contact person
523
  ldappwd          VARCHAR2(20),   -- LDAP password for site account
524
  CONSTRAINT harvest_site_schedule_pk PRIMARY KEY (site_schedule_id)
525
);
526

    
527
/*
528
 * harvest_log -- table to log entries for harvest operations
529
 */
530
CREATE TABLE harvest_log (
531
  harvest_log_id         NUMBER,         -- unique id
532
  harvest_date           DATE,           -- date of the current harvest
533
  status                 NUMBER,         -- non-zero indicates an error status
534
  message                VARCHAR2(1000), -- text message for this log entry
535
  harvest_operation_code VARCHAR2(30),   -- the type of harvest operation
536
  site_schedule_id       NUMBER,         -- site schedule id, or 0 if no site
537
  CONSTRAINT harvest_log_pk PRIMARY KEY (harvest_log_id)
538
);
539

    
540
/*
541
 * harvest_detail_log -- table to log detailed info about documents that
542
 *                       generated errors during the harvest
543
 */
544
CREATE TABLE harvest_detail_log (
545
  detail_log_id          NUMBER,         -- unique id
546
  harvest_log_id         NUMBER,         -- ponter to the related log entry
547
  scope                  VARCHAR2(50),   -- document scope
548
  identifier             NUMBER,         -- document identifier
549
  revision               NUMBER,         -- document revision
550
  document_url           VARCHAR2(255),  -- document URL
551
  error_message          VARCHAR2(1000), -- text error message
552
  document_type          VARCHAR2(100),  -- document type
553
  CONSTRAINT harvest_detail_log_pk PRIMARY KEY (detail_log_id),
554
  CONSTRAINT harvest_detail_log_fk
555
        FOREIGN KEY (harvest_log_id) REFERENCES harvest_log
556
);
557

    
558
/*
559
 * db_version -- table to store the version history of this database
560
 */
561
CREATE TABLE db_version (
562
  db_version_id   NUMBER(20),       -- the identifier for the version
563
  version         VARCHAR(250),     -- the version number
564
  status          NUMBER(20),       -- status of the version
565
  date_created    DATE,             -- the datetime on which the version was created
566
  CONSTRAINT db_version_pk PRIMARY KEY (db_version_id)
567
);
568

    
569
CREATE SEQUENCE db_version_id_seq;
570
CREATE TRIGGER db_version_before_insert
571
BEFORE INSERT ON db_version FOR EACH ROW
572
BEGIN
573
  SELECT db_version_id_seq.nextval
574
    INTO :new.db_version_id
575
    FROM dual;
576
END;
577
/
578

    
(38-38/40)