blob: 4e1a184b14f196cf35d58aaf6a3a60efcd8a5b39 [file] [log] [blame]
-- Licensed to the Apache Software Foundation (ASF) under one or more
-- contributor license agreements. See the NOTICE file distributed with
-- this work for additional information regarding copyright ownership.
-- The ASF licenses this file to You under the Apache License, Version 2.0
-- (the "License"); you may not use this file except in compliance with
-- the License. You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
CREATE OR REPLACE PROCEDURE sp_dropobject(ObjName IN varchar2,ObjType IN varchar2)
IS
v_counter integer;
BEGIN
if (ObjType = 'TABLE') then
select count(*) into v_counter from user_tables where table_name = upper(ObjName);
if (v_counter > 0) then
execute immediate 'drop table ' || ObjName || ' cascade constraints';
end if;
end if;
if (ObjType = 'PROCEDURE') then
select count(*) into v_counter from User_Objects where object_type = 'PROCEDURE' and OBJECT_NAME = upper(ObjName);
if (v_counter > 0) then
execute immediate 'DROP PROCEDURE ' || ObjName;
end if;
end if;
if (ObjType = 'FUNCTION') then
select count(*) into v_counter from User_Objects where object_type = 'FUNCTION' and OBJECT_NAME = upper(ObjName);
if (v_counter > 0) then
execute immediate 'DROP FUNCTION ' || ObjName;
end if;
end if;
if (ObjType = 'TRIGGER') then
select count(*) into v_counter from User_Triggers where TRIGGER_NAME = upper(ObjName);
if (v_counter > 0) then
execute immediate 'DROP TRIGGER ' || ObjName;
end if;
end if;
if (ObjType = 'VIEW') then
select count(*) into v_counter from User_Views where VIEW_NAME = upper(ObjName);
if (v_counter > 0) then
execute immediate 'DROP VIEW ' || ObjName;
end if;
end if;
if (ObjType = 'SEQUENCE') then
select count(*) into v_counter from user_sequences where sequence_name = upper(ObjName);
if (v_counter > 0) then
execute immediate 'DROP SEQUENCE ' || ObjName;
end if;
end if;
if (ObjType = 'INDEX') then
select count(*) into v_counter from user_indexes where index_name = upper(ObjName);
if (v_counter > 0) then
execute immediate 'DROP INDEX ' || ObjName;
end if;
end if;
END;
/
call sp_dropobject('XA_ACCESS_AUDIT','TABLE');
call sp_dropobject('XA_ACCESS_AUDIT_SEQ','SEQUENCE');
call sp_dropobject('xa_access_audit_added_by_id','INDEX');
call sp_dropobject('xa_access_audit_upd_by_id','INDEX');
call sp_dropobject('xa_access_audit_cr_time','INDEX');
call sp_dropobject('xa_access_audit_up_time','INDEX');
call sp_dropobject('xa_access_audit_event_time','INDEX');
CREATE SEQUENCE XA_ACCESS_AUDIT_SEQ START WITH 1 INCREMENT BY 1 NOCACHE NOCYCLE;
CREATE TABLE xa_access_audit (
id NUMBER(20) NOT NULL,
create_time DATE DEFAULT NULL NULL ,
update_time DATE DEFAULT NULL NULL ,
added_by_id NUMBER(20) DEFAULT NULL NULL ,
upd_by_id NUMBER(20) DEFAULT NULL NULL ,
audit_type NUMBER(11) DEFAULT '0' NOT NULL ,
access_result NUMBER(11) DEFAULT '0' NULL ,
access_type VARCHAR(255) DEFAULT NULL NULL ,
acl_enforcer VARCHAR(255) DEFAULT NULL NULL ,
agent_id VARCHAR(255) DEFAULT NULL NULL ,
client_ip VARCHAR(255) DEFAULT NULL NULL ,
client_type VARCHAR(255) DEFAULT NULL NULL ,
policy_id NUMBER(20) DEFAULT '0' NULL ,
repo_name VARCHAR(255) DEFAULT NULL NULL ,
repo_type NUMBER(11) DEFAULT '0' NULL,
result_reason VARCHAR(255) DEFAULT NULL NULL ,
session_id VARCHAR(255) DEFAULT NULL NULL ,
event_time DATE DEFAULT NULL NULL ,
request_user VARCHAR(255) DEFAULT NULL NULL ,
action VARCHAR(2000) DEFAULT NULL NULL ,
request_data VARCHAR(2000) DEFAULT NULL NULL ,
resource_path VARCHAR(2000) DEFAULT NULL NULL ,
resource_type VARCHAR(255) DEFAULT NULL NULL ,
PRIMARY KEY (id)
);
CREATE INDEX xa_access_audit_added_by_id ON xa_access_audit(added_by_id);
CREATE INDEX xa_access_audit_upd_by_id ON xa_access_audit(upd_by_id);
CREATE INDEX xa_access_audit_cr_time ON xa_access_audit(create_time);
CREATE INDEX xa_access_audit_up_time ON xa_access_audit(update_time);
CREATE INDEX xa_access_audit_event_time ON xa_access_audit(event_time);
CREATE OR REPLACE PUBLIC SYNONYM xa_access_audit FOR xa_access_audit;
CREATE OR REPLACE PUBLIC SYNONYM XA_ACCESS_AUDIT_SEQ FOR XA_ACCESS_AUDIT_SEQ;
commit;