Option 1:
If schema refresh is carried out by dropping schema then Created column in DBA_USERS will give the answer.
Select username,created from dba_users where username='USR40'; USERNAME CREATED |
Option 2:
If schema refresh is carried out by dropping the tables, then we can check the created and last_ddl_time in DBA_OBJECTS
SELECT OWNER,OBJECT_NAME,CREATED,LAST_DDL_TIME FROM DBA_OBJECTS WHERE OWNER='USR40'
|
No comments:
Post a Comment