記錄ORACLE使用者登入資訊

2jfly發表於2009-05-07

首先,建一個表如表名:LOGIN_LOG

-- Create table
create table LOGIN_LOG
(
SESSION_ID INTEGER not null,
LOGIN_ON_TIME DATE,
LOGIN_OFF_TIME DATE,
USER_IN_DB VARCHAR2(60),
MACHINE VARCHAR2(40),
IP_ADDRESS VARCHAR2(40),
RUN_PROGRAM VARCHAR2(40)
)
tablespace PDA_DATA
pctfree 10
pctused 40
initrans 1
maxtrans 255
storage
(
initial 64K
next 128K
minextents 1
maxextents unlimited
pctincrease 0
);

再建立兩個觸發器:login_on_info和login_off_info:

create or replace trigger login_on_info
after logon on database
Begin

insert into login_log(session_id,login_on_time,login_off_time,user_in_db,machine,ip_address,run_program)
select AUDSID,sysdate,null,sys.login_user,machine,SYS_CONTEXT('USERENV','IP_ADDRESS'),program
from v$session where AUDSID=USERENV('SESSIONID');

END;

create or replace trigger login_off_info
before logoff on database

Begin

update login_log set login_off_time = sysdate where session_id = USERENV('SESSIONID');
exception
when others then
null;

end;

編譯成功後完成,對了,要給使用者有select v$session 的許可權。

[@more@]

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/21100044/viewspace-1021828/,如需轉載,請註明出處,否則將追究法律責任。

相關文章