STATSPACK安装过程中遇到的问题
上一篇 /
下一篇 2008-05-15 17:07:09
/ 个人分类:原创
输入 temporary_tablespace 的值: temp
Using temp for the temporary tablespace
PL/SQL 过程已成功完成。
用户已更改。
NOTE:
SPCUSR complete. Please check spcusr.lis for any errors.
SQL>
SQL> --
SQL> -- Build the tables and synonyms
SQL> connect perfstat/&&perfstat_password
ERROR:
ORA-04098: 触发器 'SYS.restrict_user_machine_tpoatest'无效且未通过重新确认
警告: 您不再连接到 ORACLE。
------------------------------------------------------------------------------------------------
restrict_user_machine_tpoatest代码如下:
create or replace trigger restrict_user_machine_tpoatest
after logon on database
when (user='TEST')
declare
v_machine varchar2(600);
begin
select distinct machine into v_machine from v$session where username=user;
if v_machine not like '%TEST%' then
RAISE_APPLICATION_ERROR(-20001,'此用户只能使用DEVELOP机器登陆');
return;
end if;
end;
原来是这样,在网上面找很久,最后发现是自己的问题。
导入论坛
引用链接
收藏
分享给好友
推荐到圈子
管理
举报
TAG: