Oracle USERENV Function


/ Published in: SQL
Save to your folder(s)

A few examples of the USERENV function.


Copy this code and paste it in your HTML
  1. --USERENV
  2.  
  3. --Example 1
  4. SELECT USERENV('ISDBA')
  5. FROM dual;
  6.  
  7. --Example 2
  8. SELECT USERENV('LANGUAGE')
  9. FROM dual;
  10.  
  11.  
  12. --Example 3
  13. SELECT USERENV('LANG')
  14. FROM dual;

URL: http://www.databasestar.com/oracle-userenv/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.