时间:2021-07-01 10:21:17 帮助过:2人阅读
状态查询
实验过程
- <code>SQL> startup nomount;
- ORACLE instance started.
- Total System Global Area 125829120 bytes
- Fixed Size 1247684 bytes
- Variable Size 92276284 bytes
- Database Buffers 25165824 bytes
- Redo Buffers 7139328 bytes
- SQL> select status from v$instance;
- STATUS
- ------------
- STARTED
- SQL> select open_mode from v$database;
- select open_mode from v$database
- *
- ERROR at line 1:
- ORA-01507: database not mounted
- SQL> alter database mount;
- Database altered.
- SQL> select status from v$instance;
- STATUS
- ------------
- MOUNTED
- SQL> select open_mode from v$database;
- OPEN_MODE
- ----------
- MOUNTED
- SQL> alter database open;
- Database altered.
- SQL> select status from v$instance;
- STATUS
- ------------
- OPEN
- SQL> select open_mode from v$database;
- OPEN_MODE
- ----------
- READ WRITE</code>
Oracle数据库状态
标签:open code 分享 from buffer tar mes pre sage