I want to store user machine IP and MACHINE NAME into my log table. Is there any procedure, function, property or any other way to get it.
Please reply me.
Thanks
SAAD N. SIDDIQUI
EMAIL:[email protected]
[email protected]
[email protected]
Printable View
I want to store user machine IP and MACHINE NAME into my log table. Is there any procedure, function, property or any other way to get it.
Please reply me.
Thanks
SAAD N. SIDDIQUI
EMAIL:[email protected]
[email protected]
[email protected]
Select Sys_Context('USERENV', 'TERMINAL') "Machine Name", Sys_Context('USERENV', 'IP_ADDRESS') "IP Address" From dual
/
check Sys_Context function...