我想执行一个触发器,它应该应用于除一个用户之外的所有用户。
我怎么写这个?
请提供一个简单的代码示例?
if user != 'BADGUY' then
-- run this code
end if;
CREATE OR REPLACE TRIGGER <trigger_name>
:
DECLARE
BEGIN
--replace scott with the user you want to restrict
IF sys_context( 'userenv', 'current_user' ) <> 'SCOTT' THEN
--do what you want to do
END IF;
END <trigger_name>;