-- -- Copyright (C) 2005 MIT -- -- This file is part of dotLRN. -- -- dotLRN is free software; you can redistribute it and/or modify it under the -- terms of the GNU General Public License as published by the Free Software -- Foundation; either version 2 of the License, or (at your option) any later -- version. -- -- dotLRN is distributed in the hope that it will be useful, but WITHOUT ANY -- WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -- FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -- details. -- -- -- Create database tables for .LRN site-wide search -- -- @author openacs@dirkgomez.de -- @version $Id: intermedia-driver-tables-create.sql,v 1.2 2008/06/07 20:29:00 donb Exp $ -- @creation-date 13-May-2005 -- -- Partly ported from ACES. -- Central table for site-wide search. declare v_aux integer; begin select count(table_name) into v_aux from user_tables where table_name = 'SITE_WIDE_INDEX'; IF v_aux = 0 THEN execute immediate 'create table site_wide_index ( object_id integer constraint sws_index_pk primary key constraint sws_index_fk references acs_objects(object_id) on delete cascade, object_name varchar(4000), indexed_content clob, -- Dirk Gomez: no not null constraint because we also want to -- be able to index objects which are not tied to an object, -- in particular people. package_id integer constraint swi_package_id_fk references apm_packages on delete cascade, -- Dirk Gomez: That''s the place to put an object''s relevant -- date which is part of the ranking function. In calendar -- this is the item date, in forum it could be the last reply -- date to a thread etc. relevant_date date )'; END IF; select count(table_name) into v_aux from user_tables where table_name = 'SWS_LOG_MESSAGES'; IF v_aux = 0 THEN -- Intermedia sometimes is painful to debug, so I added a logging -- mechanism which relies on Oracle's autonomous transactions: DML -- statements are committed immediately so you can access this data -- from a different session right away. execute immediate 'create table sws_log_messages ( logmessage varchar2(4000), logtime date default sysdate )'; END IF; END; / exit;