http://iotn.co.kr ¿¬¶ôó: gilho.kr@gmail.com [ The Japanese government should apologize to Japanese Military Sexual Slavery victim. / ìíÜâïÙݤªÏìíÜâÏÚªÎàõîÜÒ¿ÖË?ßåíºªËÞóñªª¹ªÙª. ]
Âü°í
CREATE OR REPLACE TRIGGER member_trigger_test
AFTER INSERT OR UPDATE ON member
REFERENCING OLD AS OLD NEW AS NEW FOR EACH ROW
:NEW.USER_ID, :NEW.PASSWORD
ORA-02070 Áõ»ó
~~~~~~~~~~~
INSERT INTO test@R_SID(SELECT name FROM v$dbfile);
ORA-02070: database does not support in this context
Á¶Ä¡
~~~~~~~~~~~
declare
cursor c1 is select sname(name) as name from v$dbfile;
begin
for i in c1 loop
insert into test@R_SID values(i.name);
end loop;
end;
/