您好,登錄后才能下訂單哦!
小編給大家分享一下在oracle11g中altersystem set recyclebin = off報錯recyclebin參數在11g和10g中的有哪些區別,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
在Oracle 11g中,recyclebin參數發生了微小的變化.
This supported parameter was introduced inOracle 10.2.0
Version ParameterName Data Type Session Modifiable System Modifiable
10.2.0 recyclebin String TRUE IMMEDIATE
11.1.0 recyclebin String TRUE DEFERRED
從文檔上我們可以看到這個變化說明,到了11g中,這個參數在session依然可以理解修改并影響當前的session,但如果是在系統一級修改的話,那么就要加deferred參數,對當前已經連接的sesion沒有影響,但新連接的session將受到影響
SQL> select name,isses_modifiable,issys_modifiable from v$parameter where name='recyclebin';
NAME ISSES_MODIFIABLE ISSYS_MODIFIABLE
----------- --------------------------------
recyclebin TRUE DEFERRED
SQL>
下面做一個測試看看:
一開始,我用study用戶分別發起2個session連接到到我的ora11g數據庫上
SESSION 1
Connected to Oracle Database 11g EnterpriseEdition Release 11.1.0.6.0
Connected as study
SQL> show parameter recyclebin
NAME TYPE VALUE
-------------- ----------- --------------
recyclebin string ON
SQL> alter system set recyclebin=off;
alter system set recyclebin=off
ORA-02096: 此選項的指定初始化參數不可修改
SQL> alter session set recyclebin=off;
Session altered
SQL> create table zrp(no int);
Table created
SQL> drop table zrp;
Table dropped
SQL> flashback table zrp to before drop;
flashback table zrp to before drop
ORA-38305: 對象不在回收站中
可以看到,在system一級,不加DEFERRED參數是不允許修改的,但在session一級可以修改.
SQL> alter system set recyclebin=off DEFERRED;
System altered
SQL>
SESSION 2
說明:在session 1中發出alter system set recyclebin=off DEFERRED;命令的時候,我的session 2已經連接到了ora11g上.在這個session中,我們用來體會
alter system set recyclebin=off DEFERRED;
命令對當前已經連接的session不影響
C:\Documents andSettings\zhangrp>sqlplus study/study
SQL*Plus: Release 11.1.0.6.0 - Productionon 星期五 2月 20 16:20:50 2009
Copyright (c) 1982, 2007, Oracle. Allrights reserved.
連接到:
Oracle Database 11g Enterprise EditionRelease 11.1.0.6.0 - Production
With the Partitioning, OLAP, Data Miningand Real Application Testing options
SQL> show parameter recyclebin
NAME TYPE VALUE
-------------- ----------- --------------
recyclebin string ON
SQL> create table test_2(no int);
表已創建。
SQL> drop table test_2;
表已刪除。
SQL> flashback table test_2 to beforedrop;
閃回完成。
SQL> desc test_2
名稱 是否為空? 類型
------------ --------- -----------
NO NUMBER(38)
SESSION 3
在session 1中完成alter system set recyclebin=off DEFERRED;命令以后,我們再發起一個新的連接,看看是不是對新的連接生效:
Microsoft Windows XP [版本 5.1.2600]
(C) 版權所有 1985-2001Microsoft Corp.
C:\Documents andSettings\zhangrp>sqlplus study/study
SQL*Plus: Release 11.1.0.6.0 - Productionon 星期五 2月 20 16:23:46 2009
Copyright (c) 1982, 2007, Oracle. Allrights reserved.
連接到:
Oracle Database 11g Enterprise EditionRelease 11.1.0.6.0 - Production
With the Partitioning, OLAP, Data Miningand Real Application Testing options
SQL> show parameter recyclebin
NAME TYPE VALUE
-------------- ----------- --------------
recyclebin string OFF
以上是“在oracle11g中altersystem set recyclebin = off報錯recyclebin參數在11g和10g中的有哪些區別”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。