zoukankan      html  css  js  c++  java
  • 查看oracle的sql语句历史记录和锁表的情况

    转自: http://blog.sina.com.cn/s/blog_91339bff0100vbdc.html

    查询sql的历史记录

    select * from v$sqlarea t where t.PARSING_SCHEMA_NAME in ('用户名') order by t.LAST_ACTIVE_TIME desc
    select * from v$sqlarea t order by t.LAST_ACTIVE_TIME desc

    查看一段时间内的执行情况

    select * from v$sqlarea t where ( to_char(t.LAST_ACTIVE_TIME,'yyyy-mm-dd hh24:mi:ss') > '2011-12-28 14:11:39' ) and (to_char(t.LAST_ACTIVE_TIME,'yyyy-mm-dd hh24:mi:ss') < '2011-12-28 14:11:43') order by t.LAST_ACTIVE_TIME desc

    查询当前时间

    select sysdate from dual

    查询锁表的情况

    select * from v$locked_object;
    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;
    select b.username,b.sid,b.serial#,logon_time   from v$locked_object a,v$session b   where a.session_id = b.sid order by b.logon_time;

  • 相关阅读:
    package的使用
    package的使用
    访问控制符详解
    访问控制符详解
    继承
    Java 重写 & 重载 & super 关键字
    继承和权限控制
    错误: 程序包com.bjsxt.java140不存在
    package和import语句
    static关键字
  • 原文地址:https://www.cnblogs.com/summer520/p/3639234.html
Copyright © 2011-2022 走看看