• oracle 关闭回收站


    --11g 以后关闭回收站 system 级别需要加 DEFERRED 参数;---session 级别不需要

    select name,isses_modifiable,issys_modifiable from v$parameter where name='recyclebin'

    SQL> show parameter recyclebin

    NAME                                 TYPE        VALUE

    ------------------------------------ ----------- ------------------------------

    recyclebin                           string      on

    SQL> alter system set recyclebin=off; alter system set recyclebin=off                              

    * ERROR at line 1: ORA-02096: specified initialization parameter is not modifiable with this option

    SQL> alter system set recyclebin=off DEFERRED;

    System altered.

    SQL> show parameter recyclebin

    NAME                                 TYPE        VALUE

    ------------------------------------ ----------- ------------------------------

    recyclebin                           string      on

    SQL> exit

    Disconnected from Oracle Database 12c Enterprise Edition Release 12.2.0.1.0 - 64bit Production

    [oracle@dwdb1 ~]$ sqlplus / as sysdba

    SQL*Plus: Release 12.2.0.1.0 Production on Tue Dec 19 14:11:18 2017

    Copyright (c) 1982, 2016, Oracle.  All rights reserved.

    Connected to: Oracle Database 12c Enterprise Edition Release 12.2.0.1.0 - 64bit Production

    SQL> show parameter recyclebin

    NAME                                 TYPE        VALUE

    ------------------------------------ ----------- ------------------------------

    recyclebin                           string      OFF

    删除回收站所有垃圾信息:     PURGE recyclebin;  purge dba_RECYCLEBIN;

    SQL> show pdbs;

        CON_ID CON_NAME                       OPEN MODE  RESTRICTED

    ---------- ------------------------------ ---------- ----------         

    2 PDB$SEED                       READ ONLY  NO         

    3 DSDB                           READ WRITE NO         

    4 DWDB                        READ WRITE NO

    SQL> alter session set container=DSDB;

    Session altered.

    SQL> purge dba_RECYCLEBIN;

    DBA Recyclebin purged.

    SQL> show parameter recyclebin

    NAME                                 TYPE        VALUE

    ------------------------------------ ----------- ------------------------------

    recyclebin                           string      OFF

    SQL> alter session set container=DWDB;

    Session altered.

    SQL> SELECT  count(1) FROM dba_RECYCLEBIN;

      COUNT(1) ----------          0

    SQL> show parameter recyclebin

    NAME                                 TYPE        VALUE

    ------------------------------------ ----------- ------------------------------

    recyclebin                           string      OFF

    日积月累
  • 相关阅读:
    前端攻城狮学习笔记九:让你彻底弄清offset
    jquery在线手册
    阻止元素的默认行为
    JS三元运算符
    坐标系与基本图元(1) ~转载天行健 君子当自强而不息
    坐标系与基本图元~转载天行健 君子当自强而不息
    VS常见错误
    ZigZag Conversion
    指针转换(数组退化为指针的三种情况)
    POJ 1985
  • 原文地址:https://www.cnblogs.com/ss-33/p/8601515.html
Copyright © 2020-2023  润新知