zoukankan      html  css  js  c++  java
  • 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

    日积月累
  • 相关阅读:
    JSON.stringify深拷贝的缺点
    Vue生命周期和详细的执行过程
    CSS中width:100%和width:auto的区别
    react中的setState的使用和深入理解
    一文看懂Chrome浏览器运行机制
    闭包和垃圾回收机制
    linux 下的文件下载和上传
    mvn install本地安装jar到指定仓库
    内网maven依赖仓库jar报错解决
    hbase源码编译调试
  • 原文地址:https://www.cnblogs.com/ss-33/p/8601515.html
Copyright © 2011-2022 走看看