您的位置:首页 > 数据库 > Oracle

Oracle 11g中recyclebin参数的微小变化

2016-03-02 19:22 519 查看
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

使用回话级别能修改



查看: 1612|回复: 2
收藏







Oracle 11g中recyclebin参数的微小变化 [复制链接]

Toms_zhang





版主

会员

精华贴数
4
专家积分
58
技术积分
22250
社区积分
2162
注册时间
2002-8-31

论坛徽章:
98























加好友

发消息

电梯直达


1#


发表于 2009-2-20 16:40:10 |只看该作者 |倒序浏览

Oracle 11g中,recyclebin参数发生了微小的变化.

This supported parameter was introduced in Oracle 10.2.0

VersionParameter NameData TypeSession ModifiableSystem Modifiable
10.2.0recyclebinStringTRUEIMMEDIATE
11.1.0recyclebinStringTRUEDEFERRED
从文档上我们可以看到这个变化说明,到了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 Enterprise Edition 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 and Settings\zhangrp>sqlplus study/study

SQL*Plus: Release 11.1.0.6.0 - Production on 星期五 2月 20 16:20:50 2009

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

连接到:

Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production

With the Partitioning, OLAP, Data Mining and 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 before drop;

闪回完成。

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-2001 Microsoft Corp.

C:\Documents and Settings\zhangrp>sqlplus study/study

SQL*Plus: Release 11.1.0.6.0 - Production on 星期五 2月 20 16:23:46 2009

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

连接到:

Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production

With the Partitioning, OLAP, Data Mining and Real Application Testing options

SQL> show parameter recyclebin

NAME TYPE VALUE

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

recyclebin string OFF

 

通过测试,可以看出,一切都是按照预期的行为发生的.

http://tomszrp.itpub.net/post/11835/478940
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: