Indice

Comandi Utente

Cambio Password

ALTER USER <nomeutente> IDENTIFIED BY "<nuova pwd>";

Blocco Utente

ALTER USER <nomeutente> ACCOUNT LOCK;

Sblocco Utente

ALTER USER <nomeutente> ACCOUNT UNLOCK;

Expire Utente

ALTER USER <nomeutente> PASSWORD EXPIRE;

Limitare Quota Utente

ALTER USER <nomeutente> DEFAULT TABLESPACE users TEMPORARY TABLESPACE <Temp> QUOTA 100M ON users QUOTA 0 ON <my_data>;

Verificare lo status di un Account

SELECT ACCOUNT_STATUS FROM DBA_USERS WHERE USERNAME = <Account Name>