Bạn có thể có một thủ tục ghi thông báo vào bảng bằng cách sử dụng một giao dịch tự trị, chẳng hạn như:
procedure log (p_message)
is
pragma autonomous_transaction;
begin
insert into message_log (user, datetime, message)
values (user, sysdate, p_message);
commit;
end;
Sau đó, theo dõi bảng từ một phiên Oracle khác.