OCP-052考试题库汇总(32)-CUUG内部解答版

简介: Which state must a database be to enable ARCHIVELOG ?A)NOMOUNTB)OPEN IN READ WRITE modeC)OPEN IN READ ONLY modeD)OPEN IN RESTRICTED modeE)MOUNT...

Which state must a database be to enable ARCHIVELOG ?

A)NOMOUNT

B)OPEN IN READ WRITE mode

C)OPEN IN READ ONLY mode

D)OPEN IN RESTRICTED mode

E)MOUNT

Answer: E

赵:

题译:数据库必须是哪个状态才能启用 ARCHIVELOG?

oracle 启动分为三步:

nomount --根据参数文件启动实例(instance)

mount --加载控制文件,让实例和数据库相关联

open --根据控制文件找到并打开数据文件和日志文件,从而打开数据库

Oracle 的归档(ARCHIVELOG)模式启动和关闭:

1、登录数据库:

sqlplus / as sysdba

2、查看当前归档模式

archive log list;

3、关闭数据库

可以使用 shutdown immediate;或者 shutdown normal ,若一直等待,执行 shutdown abort

4、mount 状态启动数据库

startup mount;

5、归档模式操作

启用归档模式:alter database archivelog;

关闭归档模式:alter database noarchivelog;

6、启动数据库

alter database open;

目录
相关文章
|
数据安全/隐私保护 关系型数据库 Oracle
OCP-052考试题库汇总(60)-CUUG内部解答版
Examine these facts about a database: The database default tablespace to EXAMPLE. DEFERRED_SEGMENT_CREATION is TRUE (原来为 FALSE,题目有错) Examine these co...
3730 0
OCP-052考试题库汇总(57)-CUUG内部解答版
Examine these facts about a databases: 1.USERS is the database default tablespace. 2.USER1,USER2,and USER3 have the CREATE SESSION privilege 3.
736 0
OCP-052考试题库汇总(58)-CUUG内部解答版
In one of your databases: 1.USER1 and USER2 have no system privileges. 2.ROLE1 only has these privileges: ?CREATE SESSION ?CREATE TABLE ?CREATE VIEW ...
768 0
|
数据库 存储
OCP-052考试题库汇总(48)-CUUG内部解答版
Which is true about the Automatic Diagnostic Repository (ADR) ? A) It is used only if the DIAGNOSTIC_DEST parameter is manually configured.
739 0
|
Oracle 关系型数据库 数据库管理
OCP-052考试题库汇总(47)-CUUG内部解答版
Which three are true about the Automatic Database Diagnostic Monitor (ADDM)? A)It improves database performance by automatically implementing Oracle ‘s best practices.
821 0
|
Oracle 关系型数据库 数据库
OCP-052考试题库汇总(45)-CUUG内部解答版
You want to access employee details contained in flat files created by an application. Which two methods will achieve this? A)Use a BFILE column in a table to access the flat file.
1862 0
|
SQL 数据库 关系型数据库
OCP-052考试题库汇总(43)-CUUG内部解答版
Which is true about external tables? A)Segments are allocated for external tables. B)They may have indexes.
2131 0
|
SQL 存储 Oracle
OCP-052考试题库汇总(37)-CUUG内部解答版
Examine these facts about objects in the SYSTEM schema: 1.EMP is a table. 2.EMP_PK is a primary key constraint on EMP.
853 0
|
Oracle 关系型数据库
OCP-052考试题库汇总(29)-CUUG内部解答版
When does an incremental checkpoint occur ? A)when an online redo log switch occurs. B)when DBWn writes dirty buffers as part of its normal processing.
1033 0
OCP-052考试题库汇总(27)-CUUG内部解答版
Which two of these must be available READ/WRITE to keep a database open? A)all copies of the control file.
512 0

热门文章

最新文章