Rem Rem $Header: sdo/admin/loce112.sql /st_sdo_11.2.0/2 2011/04/06 08:14:16 mhorhamm Exp $ Rem Rem loce112.sql Rem Rem Copyright (c) 2010, 2011, Oracle and/or its affiliates. Rem All rights reserved. Rem Rem NAME Rem loce112.sql - Rem Rem DESCRIPTION Rem Rem Rem NOTES Rem Rem Rem MODIFIED (MM/DD/YY) Rem sravada 05/03/10 - Created Rem ALTER SESSION SET CURRENT_SCHEMA = MDSYS; -- Drop objects related to sdopopt.sql ---------------------------------------------------------------------- drop public synonym SDO_PQRY force; drop public synonym sdoridtable force; drop function MDSYS.SDO_PQRY; drop function MDSYS.qry2opt; drop function MDSYS.sdo_simple_filter; drop type MDSYS.sdoridtable force; -- Drop triggers involving MDSYS.sdo_cs.sdo_cs_context_invalidate: -- From sdoepsgd.sql begin execute immediate 'drop trigger MDSYS.SDO_PREFERRED_OPS_SYSTEM_TRIG'; exception when others then null; end; / -- From sdoepsgl.sql begin execute immediate 'drop TRIGGER MDSYS.SDO_COORD_OPS_TRIGGER'; exception when others then null; end; / -- From sdoepsgl2.sql begin execute immediate 'drop TRIGGER MDSYS.SDO_PREFERRED_OPS_SYS_TRIGGER'; exception when others then null; end; / begin execute immediate 'drop TRIGGER MDSYS.SDO_PREFERRED_OPS_USER_TRIGGER'; exception when others then null; end; / begin execute immediate 'drop TRIGGER MDSYS.SDO_COORD_OP_PATHS_TRIGGER'; exception when others then null; end; / -- From sdoepsgv.sql begin execute immediate 'drop TRIGGER MDSYS.CS_SRS_TRIGGER'; exception when others then null; end; / begin execute immediate 'drop TRIGGER MDSYS.SDO_CRS_INSERT_TRIGGER'; exception when others then null; end; / begin execute immediate 'drop TRIGGER MDSYS.SDO_coord_op_param_val_TRIGGER'; exception when others then null; end; / @@sdoeoper.sql ALTER SESSION SET CURRENT_SCHEMA = SYS;