Index: openacs-4/packages/forums/sql/oracle/forums-search-drop.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/forums/sql/oracle/forums-search-drop.sql,v diff -u -N -r1.4 -r1.5 --- openacs-4/packages/forums/sql/oracle/forums-search-drop.sql 9 Aug 2002 20:51:49 -0000 1.4 +++ openacs-4/packages/forums/sql/oracle/forums-search-drop.sql 17 May 2004 15:15:16 -0000 1.5 @@ -22,22 +22,25 @@ -- @version $Id$ -- --- IMPORTANT: --- replace all instances of the string "yon" below this line with your schema --- user and schema password accordingly. also, replace the "connect --- ctxsys/ctxsys" statement with the appropriate values for your system. need --- to figure out how to do this in a better way. +-- Call this script like this: +-- +-- sqlplus /nolog @forums-search-create.sql +-- +-- &1 = ctxsys password +-- &2 = OpenACS database user +-- &3 = OpenACS database password --- as normal user +connect &2/&3; + drop function im_convert; drop procedure im_convert_length_check; declare begin for row in (select job from user_jobs - where what like '%yon.forums_content_idx%') + where what like '%&2..forums_content_idx%') loop dbms_job.remove(job => row.job); end loop; @@ -51,11 +54,13 @@ execute ctx_ddl.drop_preference('forums_user_datastore'); -- as ctxsys -connect ctxsys/ctxsys; +connect ctxsys/&1; drop procedure s_index_message; -- as normal user -connect yon/yon; +connect &2/&3; drop procedure index_message; + +exit