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

    日积月累
  • 相关阅读:
    Windows下升级MySQL5.0到5.5
    聊聊MVC和模块化以及MVVM和组件化
    还有很多行业,并没有和互联网相加
    用React实现一个自动生成文章目录的组件
    一个Js开发者学习Python的第一天
    React弹窗组件
    React项目开发经验汇总
    Audio 标签的使用和自己封装一个强大的React音乐播放器
    你知道的和不知道的sass
    我眼中javascript的这些年
  • 原文地址:https://www.cnblogs.com/ss-33/p/8601515.html
Copyright © 2011-2022 走看看