Affichage des articles dont le libellé est database. Afficher tous les articles
Affichage des articles dont le libellé est database. Afficher tous les articles

mercredi 2 février 2011

Afficher les locks sous Oracle

SELECT 
                o.owner, o.object_name, o.object_type, 
                o.last_ddl_time, o.status, l.session_id, 
                l.oracle_username, l.locked_mode
FROM 
                dba_objects o, gv$locked_object l
WHERE 
                o.object_id = l.object_id;

mardi 11 janvier 2011

ORA-28000: The Account is locked

Comment unlocker ? ;o)

Ben tout simplement, via un compte admin Oracle :

SQL> alter user scott identified by tiger account unlock;

Categories