Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Trigger not firing!!!!!!!!!!(URGENT)
Does the trigger exist and is it enabled? =20
Is the trigger name a reserved word?
I don't see anything wrong with your code. Check the basic things.=20
You can also used the following to debug the trigger firing. It will write stuff to the alert log file.
SQL> exec dbms_system.ksdwrt(1, 'From Kirti'); -- Write to trace file (1=3DTrace, 2=3Dalert, 3=3Dboth).
-----Original Message-----
From: oracle-l-bounce_at_freelists.org
[mailto:oracle-l-bounce_at_freelists.org] On Behalf Of Onkar N Tiwary
Sent: Thursday, June 09, 2005 7:51 AM
To: rjamya; oracle-l_at_freelists.org
Subject: Re: Trigger not firing!!!!!!!!!!(URGENT)
Raj,
The code for the trigger is :
CREATE OR REPLACE TRIGGER INFO=20
AFTER LOGON
ON DATABASE=20
begin
insert into info=20
values(ora_client_ip_address,to_char(sysdate,'dd-mm-yyyy:HH:MI:SS'),ora_
login_user);
end;
And I test it by logging into the DB with another user also say a user=20
called LOG but no record in the table. Moreover I tried the following
sql on=20
the prompt also:
SELECT ORA_CLIENT_IP_ADDRESS FROM DUAL; -- no output
But when I issued :
SELECT ORA_LOGIN_USER FROM DUAL; -- gives me the current username
logged in=20
the DB
Any idea?????
On 6/9/05, rjamya <rjamya_at_gmail.com> wrote:=20
>=20
>=20
>=20
>=20 >=20 >=20
--=20
Thanks & Regards,
T. Onkar Nath
Ph : +91-9826728111(Cell)
to_onkar_at_yahoo.com
onkarnath.tiwary_at_gmail.com
-- http://www.freelists.org/webpage/oracle-l -- http://www.freelists.org/webpage/oracle-lReceived on Thu Jun 09 2005 - 08:05:31 CDT
![]() |
![]() |