トリガーを実行したいのですが、それを 1 人のユーザーを除くすべてのユーザーに適用する必要があります。
どうやってこれを書くのですか?
簡単なコード例を教えてください。
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>;