Oracle Spin

Day-to-Day Experiences

Archive for the ‘role’ Category

How to find the date when a role was created?

Posted by Amin Jaffer on January 27, 2009

The view DBA_ROLES doesn’t have the created date column to display when the role was created, but the information is stored in sys.user$ the underlying table. So using the following query one can find the date the role was created.

SQL> select name, to_char(ctime, ‘DD-MON-YYYY HH24:MI:SS’) from sys.user$ where name = ‘RESOURCE’;

NAME TO_CHAR(CTIME,’DD-MON-YYYYHH24:MI:SS’)
——– —————————————–
RESOURCE 22-JUL-2005 00:42:50

Posted in General DBA, role | Tagged: , , , | Leave a Comment »