当前位置:网站首页>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;边栏推荐
猜你喜欢
随机推荐
npm npm
Calculate the angle of a line defined by two points
Interpretation of the paper (GSAT) "Interpretable and Generalizable Graph Learning via Stochastic Attention Mechanism"
对于在新标签页中打开的链接,始终使用“noopener”或“noreferrer”
将vim与系统剪贴板的交互使用
Use Jenkins for continuous integration, this knowledge point must be mastered
excel vertical to horizontal
6134. 找到离给定两个节点最近的节点-力扣双百代码
PAM Palindromic Automata
Solve the port to take up
2022年最新河北建筑八大员(机械员)模拟考试题库及答案
计算两点之间的距离
UML diagram of soft skills
Wechat Gymnasium Appointment Mini Program Graduation Design Finished Work (4) Opening Report
访问控制台中的选定节点
Wechat Gymnasium Reservation Mini Program Graduation Design Finished Work Mini Program Graduation Design Finished Product (2) Mini Program Function
Mini Program Graduation Works WeChat Food Recipe Mini Program Graduation Design Finished Product (8) Graduation Design Thesis Template
Nacos配置中心之加载配置
关于ETL的两种架构(ETL架构和ELT架构)
sys_kill系统调用









