Search
 
SCRIPT & CODE EXAMPLE
 

SQL

oracle list user locked

SELECT * FROM DBA_USERS WHERE ACCOUNT_STATUS <> 'OPEN';
-- Unlock a user
ALTER USER my_user ACCOUNT UNLOCK;
-- If password is expired 
ALTER USER my_user IDENTIFIED BY new_password ACCOUNT UNLOCK;
Comment

PREVIOUS NEXT
Code Example
Sql :: mssql replace first occurrence 
Sql :: check ksql db health 
Sql :: select where mysql 
Sql :: insert data into multiple tables mysql 
Sql :: show database not empty tables postgres 
Sql :: postgresql isnull with max 
Sql :: case construct in where clause 
Sql :: mysqli_free_result 
Sql :: alter in sql 
Sql :: oracle for loop on list 
Sql :: replace sql 
Sql :: Question 7: Write an SQL query to print details of the Workers who have joined in Feb’2014. 
Sql :: cql insert 
Sql :: rename temp table column name in sql server 
Sql :: update query in linked server 
Sql :: delete from table where length sql 
Sql :: keep getting an error when I try to connect to mysql workbench 
Sql :: add column first position mysql 
Sql :: window function sql 
Sql :: REMOVE DATE FROM DATE TIME SQL SERVER 
Sql :: find in set in postgresql 
Sql :: change date in pivot table to month in sql server 
Sql :: ms sql check if column is nullable 
Sql :: mariadb check constraint example? 
Sql :: data types in sql 
Sql :: SQL Addition Operator 
Sql :: not in in mongodb 
Sql :: how to get capital letter first in sql 
Sql :: like in sql 
Sql :: postgres insert 
ADD CONTENT
Topic
Content
Source link
Name
1+2 =