select审计对数据库性能的影响
首先创造实验环境:
create table test_audit(pid int,name char(20) ,name2 char(20) ,name3 char(20),name4 char(20),name5 char(20),name6 char(20))
begin
for i in 1..5 loop
insert into test_audit(pid,name,name2,name3,name4,name5,name6) values(i,'this is a test','this is a test2','this is a test3','this is a test4','this is a test5','this is a test6');
end loop;
end;
/
分以下三种情况:
1)没开审计
环境检查:
SQL> show parameter audit;
NAME TYPE VALUE
-----
共有 0 条评论