#ctime oracle
Explore tagged Tumblr posts
Text
Find the blocking sessions, objects and sql in Oracle
Find the blocking sessions that were blocking shows objects and SQL SELECT S.SID, p.SPID, s.machine, s.username, CTIME/60 as minutes_locking , do.object_name as locked_object, q.sql_Text From v$lock l JOIN v$session s on l.sid=s.sid JOIN v$process p on p.addr=s.paddr JOIN v$locked_object lo on l.sid=lo.session_id JOIN dba_objects do on lo.object_id = do.object_id JOIN v$sqlarea q on…
0 notes
Text
How to Check Last Password Change History?
How to Check Last Password Change History? #oracledba #oracle #shripaldba #ocptechnology
In this article, we are going to learn how to check past password change history in the oracle database. Using the below commands you can check the password change history step by step. Read: What is control file and datafile in Oracle? When was my Oracle password last changed? The below query will show you the timestamp of last password change. Here i’m checking SCOTT user password change…
View On WordPress
#ctime oracle#get ddl of all users in oracle#how to change expiry date of user in oracle 12c#how to change password in database#how to find who changed oracle user password#how to get user creation script in oracle#how to retrieve user password in oracle 11g#how to retrieve user password in oracle 12c#last password change date in oracle#oracle audit password change#oracle copy users from one database to another#oracle db password change date#oracle export users and passwords#oracle user password table#query to get password of user in oracle#sql query to check password expiry date in oracle
0 notes
Text
User creation details in user$ table
User creation details in user$ table
Check User creation date/Password change/Expire time in Oracle Check User Creation Date in Oracle SELECT NAME, type#, ctime FROM sys.user$ WHERE NAME IN ('SYS', 'SYSTEM') ORDER BY NAME; Check User last password change time in Oracle SELECT NAME, type#, ptime FROM sys.user$ WHERE NAME IN ('SYS', 'SYSTEM') ORDER BY NAME; Check User Password Expiry Date SELECT NAME, type#, EXPTIME FROM…
View On WordPress
0 notes