zoukankan      html  css  js  c++  java
  • Oracle游标的查询

    The initialization parameter OPEN_CURSORS in INITSID.ORA determines the maximum number of cursors per user.

    Check the parameter specified by executing the following SQL:
    select * from v$parameter
    where name = 'open_cursors'

    /


    If you want more cursors to be opened at the same time, shut the database, change INITSID.ORA and restart the database.

    The cursors that are counted for this are those explicit cursors that you opened and never closed or the cursors the PL/SQL keeps open. If you use a lot of stored procedures, then you will see lot of cached cursors. From release 8.1, PL/SQL will close these cached cursors on commit.

    You can find the list of open cursors and the users who opened them by executing the following SQL:

    select user_name, status, osuser, machine, a.sql_text
    from v$session b,
    v$open_cursor a
    where a.sid = b.sid
    /


    But the above SQL will tell you about cursors opened at some point of time, but does tell you about currently open cursors. But the above SQL will helps us to track cursor leaks, which would need fixing, to avoid this error in the future.

    The SQL given below will tell you how many are open truly.

    select a.value, b.name
    from v$mystat a, v$statname b
    where a.statistic# = b.statistic#
    and a.statistic#= 3

    /


    The closing of the cursor change based on the tool you use:

    In JDBC, preparedStatement.close() does closes the cursor.
    In PRO*C EXEC SQL CLOSE ; does it.
    In OCI -- there is an API call to close a statement

    These statements will make sure you close every explicitly opened cursor.

    查询游标所在的应用程序和所在的中端(电脑):
    select * from (
    select terminal,program,count(*)  SQLCount from v$session
    group by terminal,program)
    order by SQLCount desc

    人生有三宝:终身运动,终身学习,终身反醒.吸收新知,提高效率,懂得相处,成就自己,也成就他人,创造最高价值。
  • 相关阅读:
    解决编程开发时候文件命名的苦恼(规范代码 提高可读性)
    react的this.setState没有触发render
    动态修改JS对象的值及React setState
    Antd Select组件结合使用出现must set key for <rc-animate> children问题
    antd Select进阶功能 动态更新、函数防抖
    前端性能优化之重排和重绘
    ES5 map循环一大坑:循环遍历竟然出现逗号!
    Monent.js:强大的日期处理类库
    Docker概览
    Spring boot 集成hessian
  • 原文地址:https://www.cnblogs.com/jimeper/p/304841.html
Copyright © 2011-2022 走看看