oracle 常用命令(查看oracle字符集)

select userenv(‘language’) from dual;    查看oracle字符集

 

alter user scott account unlock; 解锁

 

select username,lock_date from dba_users where username=’scott’;    查看锁定时间

 

select b.owner,b.object_name,a.session_id,a.locked_mode from v$locked_object a,dba_objects b where b.object_id = a.object_id;    查看被锁定的表

    原文作者:yang呜呜
    原文地址: https://blog.csdn.net/csdn123x/article/details/72896858
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞