2021-08-13
oracle生产库19c是否可以直接开启回收站
oracle19c 生产库 未开回收站 无备份 纯裸奔状态 是否在运行过程中可以直接用alter system打开回收站?
我来答
添加附件
收藏
分享
问题补充
1条回答
默认
最新
回答交流
提交
问题信息
请登录之后查看
邀请回答
暂无人订阅该标签,敬请期待~~
墨值悬赏
可以
The recycle bin is enabled by default.
To disable the recycle bin:
Issue one of the following statements:
ALTER SESSION SET recyclebin = OFF;
ALTER SYSTEM SET recyclebin = OFF;
To enable the recycle bin:
Issue one of the following statements:
ALTER SESSION SET recyclebin = ON;
ALTER SYSTEM SET recyclebin = ON;
Enabling and disabling the recycle bin with an ALTER SYSTEM or ALTER SESSION statement takes effect immediately. Disabling the recycle bin does not purge or otherwise affect objects already in the recycle bin.
Like any other initialization parameter, you can set the initial value of the recyclebin parameter in the text initialization file initSID.ora:
recyclebin=on
评论
有用 0
墨值悬赏