当前位置:网站首页>Oracle database is set to read-only and read-write
Oracle database is set to read-only and read-write
2022-08-01 23:09:00 【yunzhonghefei】
Query the current state of the database (assumed to be read-write) and change it to read-only.
sqlplus /nologconnect / as sysdba -- login as DBA --select open_mode from v$database; -- read-only or writable when querying the current state of the database --shutdown immediate --warnning: make sure there is no real process to execute before executing --startup mount --load database--alter database open read only; --change the database to read-only state--
Changes the database from read-only to writable.
sqlplus / as sysdbaselect open_mode from v$database;shutdown immediatestartup open read write;边栏推荐
猜你喜欢
随机推荐
Deep learning Course2 first week Practical aspects of Deep Learning exercises
萍不回答
1391D. 505 状压dp
美赞臣EDI 940仓库装运订单详解
联邦学习入门
还在纠结报表工具的选型么?来看看这个
6134. 找到离给定两个节点最近的节点-力扣双百代码
excel clear format
vscode hide menu bar
【数据分析03】
计算两点之间的距离
对于在新标签页中打开的链接,始终使用“noopener”或“noreferrer”
Chapter 11 Working with Dates and Times
npm npm
13、学习MySQL 分组
How do programmers solve online problems gracefully?
(翻译)按钮的对比色引导用户操作的方式
联邦学习在金融领域的发展和应用
Deep Learning Course2 Week 2 Optimization Algorithms Exercises
leetcode刷题









