create or replace trigger test_trigger
before insert or update or delete on aa
for each row
begin
   insert into aa_log select audsid from v$session;
end;  错误提示如下:Compilation errors for TRIGGER EZF.TEST_TRIGGER Error: PLS-00201: identifier 'SYS.V_$SESSION' must be declaredLine: 5Text: insert into aaa select audsid from v$session; Error: PL/SQL: SQL Statement ignoredLine: 5Text: insert into aaa select audsid from v$session;  但是单独执行这个语句insert into aa_log select audsid from v$session一点问题都没有  请问这是什么原因