If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > Oracle > About logon trigger

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 01-12-12, 07:23
kuldeep.bhanja kuldeep.bhanja is offline
Registered User
 
Join Date: Jan 2012
Posts: 1
About logon trigger

I want to authenticate that user can access a particular schema by a particular application which is running on JBOSS application server. how can i identify that which application is accessing schema?
Plz suggest as soon as possible........
Reply With Quote
  #2 (permalink)  
Old 01-12-12, 09:27
beilstwh beilstwh is offline
Lead Application Develope
 
Join Date: Jun 2004
Location: Liverpool, NY USA
Posts: 2,222
Please see the following link. Check out module.

SYS_CONTEXT
__________________
Bill
You do not need a parachute to skydive. You only need a parachute to skydive twice.
Reply With Quote
  #3 (permalink)  
Old 01-13-12, 06:41
dayneo dayneo is offline
Registered User
 
Join Date: Oct 2002
Location: Cape Town, South Africa
Posts: 161
1 SELECT PROGRAM FROM V$SESSION
2* WHERE AUDSID = SYS_CONTEXT('USERENV', 'SESSIONID')
3 /

PROGRAM
-------------------------------------------------------
sqlplus.exe

1 row selected.
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On