Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.tools -> Re: Oracle Security Question
You could do something giving access via stored procedures and basing your security on the information from v$session:
select OSUSER, TERMINAL
from V$SESSION where AUDSID = userenv('sessionid')
Note that v$session truncates the OSUSER to 15 characters, so you might want to use the one from V$SESSION_CONNECT_INFO.
Christopher Latta
Richard L. Chen <richchen_at_ms6.hinet.net> wrote in message
news:9ako8n$l9j_at_netnews.hinet.net...
> Hi,
> Is there any possible solution to prevent unauthorized client machines
> and/or unauthorized applications to access Oracle database even with valid
> userid and password ??
Received on Fri Apr 06 2001 - 23:41:57 CDT
![]() |
![]() |