【单选题】
当Oracle服务器启动时,下列哪种文件不是必须的___。
A. 数据文件
B. 控制文件
C. 日志文件
D. 归档日志文件
查看试卷,进入试卷练习
微信扫一扫,开始刷题

答案
D
解析
暂无解析
相关试题
【单选题】
在Oracle中,当用户要执行SELECT语句时,下列___进程从磁盘获得用户需要的数据。
A. 用户进程
B. 服务器进程
C. 日志写入进程(LGWR)
D. 检查点进程(CKPT)
【单选题】
在Oracle数据库的逻辑结构中有以下组件:A表空间,B数据块,C区,D段。这些组件从大到小依次是___。
A. A→B→C→D
B. A→D→C→B
C. A→C→B→D
D. D→A→C→B
【单选题】
在Windows操作系统中,Oracle的___服务监听并接受来自客户端应用程序的连接请求。
A. OracleHOME_NAMETNSListener
B. OracleServiceSID
C. OracleHOME_NAMEAgent
D. OracleHOME_NAMEHTTPServer
【单选题】
在Oracle中,下面哪条语句当COMM字段为空时显示0,不为空时显示COMM的值___。
A. SELECT ename, NVL(comm, 0) FROM emp
B. SELECT ename, NULL(comm, 0) FROM emp
C. SELECT ename, NULLIF(comm, 0) FROM emp
D. SELECT ename, DECODE(comm, NULL, 0) FROM emp
【单选题】
在Oracle中,有一个名为seq的序列对象,以下语句能返回序列值但不会引起序列值增加的是___。
A. select seq.ROWNUM from dual
B. select seq.ROWID from dual
C. select seq.CURRV AL from dual
D. select seq.NEXTV AL from dual
【单选题】
要统计某表中记录的总个数,以下哪项是正确的SQL语句___。
A. select Max(*) from 表名
B. select Sum(*) from 表名
C. select Count(*) from 表名
D. select Min(*) from 表名
【单选题】
下列正确查询姓张的学生的语句是___。
A. select * from 表名 where 姓名= '张'
B. select * from 表名 where 姓名 like '张%'
C. select * from 表名 where 姓名= '%张%'
D. select * from 表名 where 姓名 like '张'
【单选题】
在SQL*PLUS环境中可以利用DBMS_OUTPUT包中的PUT_LINE方法来回显服务器端变量的值,但在此之前要利用一个命令打开服务器的回显功能,这一命令是___。
A. set server on
B. set serverecho on
C. set servershow on
D. set serveroutput on
【单选题】
第一步用DELETE命令删除了表A中的数据(但并没有提交),第二步成功创建了一个表B,第三步执行了一个ROLLBACK回滚操作。请问以下叙述正确的是___。
A. 表A中的数据被恢复回来,创建的表B被从数据库中被删除,恢复为未建表之前的状态
B. 表A中的数据被恢复回来,表B被创建在数据库中
C. 表A中的数据被彻底从数据库中删除,但表B被从数据库中被删除,恢复为未建表之前的状态
D. 表A中的数据被彻底从数据库中删除,表B被创建在数据库中
【单选题】
某个表的创建语句如下: CREATE TABLE USER_TAB01(COL1, COL2, COL3) TABLESPACE USER01 STORAGE(INITIAL 64K NEXT 128K PCTINCREASE 100); ORACLE为该表的数据段分配的前3个区的大小依次为多大?___
A. 64KB, 128KB, 128KB
B. 64KB, 128KB, 192KB
C. 64KB, 128KB, 64KB
D. 64KB, 128KB, 256KB
【单选题】
假定有一张表用户表users,其中一身份证字段ID_card。为了维护数据的完整性,在设计数据库时,最好对ID_card字段添加约束,请问应该添加什么约束___。
A. primary key
B. check
C. default
D. not null
【单选题】
下面哪一个like命令会返回名字象HOTKA的行?___
A. where ename like ‘_HOT%'
B. where ename like ‘H_T%'
C. where ename like ‘%TKA_'
D. where ename like ‘%TOK%'
【单选题】
命令sqlplus /nolog的作用是___
A. 仅创建一个ORACLE实例,但并不打开数据库.
B. 仅创建一个ORACLE实例,但并不登录数据库.
C. 启动sqlplus,但并不登录数据库
D. 以nolog用户身份启动sqlplus
【单选题】
___包用于显示PL/SQL块和存储过程中的调试信息。
A. DBMS_OUTPUT
B. DBMS_STANDARD
C. DBMS_INPUT
D. DBMS_SESSION
【单选题】
在Oracle中,有一个名为seq的序列对象,以下语句能返回序列值但不会引起序列值增加的是___。
A. select seq.ROWNUM from dual
B. select seq.ROWID from dual
C. select seq.CURRV AL from dual
D. select seq.NEXTV AL from dual
【单选题】
DBA可以使用下列哪一个命令查看当前归档状态___。
A. ARCHIVE LOG LIST
B. FROMARCHIVE LOGS
C. SELECT * FROM V$THREAD
D. SELECT * FROM ARCHIVE_LOG_LIST
【单选题】
oracle数据库有多种启动状态,其中___是在数据库备份和恢复中使用最多的状态。
A. startup force
B. startup
C. startup nomount
D. startup mount
【单选题】
要让scott能够导入自身方案给别的用户,需要他必须具有___。
A. resource角色
B. exp_full_ddatabase角色
C. imp_full_database角色
D. dba角色
【单选题】
设置闪回区域大小的参数是___。
A. DB_RECOVERY_FILE_DEST
B. DB_RECOVERY_FILE_DEST_SIZE
C. DB_FLASHBACK_RETENTION_TARGET
D. FLASHBACK_ON
【单选题】
启用系统的闪回使用___。
A. alter database set flashback_on=true
B. alter database flashback on
C. alter system set flashback_on=true
D. alter system set flashback on
【单选题】
导出scott的表,然后导入到另外一个方案中,要用的到核心关键词是___。
A. directory
B. dumpfile
C. tables
D. remap_schema
推荐试题
【单选题】
全面深入贯彻军委主席负责制的关键所在和着力重点是指:___
A. 全面贯彻党对军队绝对领导的根本原则和制度,从政治上、思想上、纪律上、制度上、作风上为贯彻军委主席负责制提供坚强保证。
B. 全面贯彻党对军队绝对领导的根本原则和制度,从政治上、思想上、组织上、制度上、纪律上为贯彻军委主席负责制提供坚强保证。
C. 全面贯彻党对军队绝对领导的根本原则和制度,从思想上、组织上、纪律上、制度上、作风上为贯彻军委主席负责制提供坚强保证。
D. 全面贯彻党对军队绝对领导的根本原则和制度,从政治上、思想上、组织上、制度上、作风上为贯彻军委主席负责制提供坚强保证。
【单选题】
Since We are social beings,the quality of our lives depends (in large measure) on our interpersonal relationships. One strength of the human condition is our tendency to give and receive support from one another under stressful circumstances. Social support consists of the exchange of resources among people based on their interpersonal ties. Those of us with strong support systems appear better able to cope with major life changes and daily hassles (困难)? People with strong social ties live longer and have better health than those without such ties. Studies over a range of illnesses,from depression to heart disease?reveal that the presence of social support helps people fend off (挡开)illness,and the absence of such support makes poor health more likely.
Social support cushions stress in a number of ways. First,friends, relatives,and co-workers may let us know that they value us. Our self-respect is strengthened when we feel accepted by others despite our faults and difficulties. Second,other people often provide us with informational support. They help us to define and understand our problems and find solutions to them. Third,we typically find social companionship supportive. Engaging in leisure-time activities with others helps us to meet our social needs.
while at the same time distracting (转移......注意力)us from our worries and troubles. Finally,other people may give us instrumental support一financial aid, material resources,and needed services—that reduces stress by helping us resolve and cope with our problems.
Which of the following is closest in meaning to the word “cushions” (Line 1, Para. 2)?
A. Adds up to.
B. Does away with.
C. Lessens the effect of.
D. Lays the foundation for.
【单选题】
EH油母管压力低至___时,启动备用EH油泵。
A. >11.2±0.5Mpa
B. <11.2±0.5Mpa
C. >11.2±0.05 Mpa
D. <11.2±0.05Mpa
【单选题】
在汽轮机盘车状态下,要求顶轴油压力维持在___
A. 8.81~16.62MPa
B. 8.82~16.62MPa
C. 8.82~16.64MPa
D. 8.81~16.64Mpa
【单选题】
汽轮机在启动时,低速暖机已结束,润滑油泵故障,油压逐渐下降,应如何处理___
A. 破坏真空停机;
B. 不破坏真空停机;
C. 迅速提升汽轮机转速;
D. 迅速降低汽轮机转速;