【单选题】
在Oracle中,一个用户拥有的所有数据库对象统称为___。
A. 数据库
B. 模式
C. 表空间
D. 实例
查看试卷,进入试卷练习
微信扫一扫,开始刷题
答案
B
解析
暂无解析
相关试题
【单选题】
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数据库中,___用户模式存储数据字典表和视图对象。
A. SYSTEM
B. SYS
C. SCOTT
D. YSDBA
【单选题】
在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
【单选题】
在Oracle中,游标都具有下列属性,除了___。
A. %NOTFOUND
B. %FOUND
C. %ROWTYPE
D. %ISOPEN
【单选题】
要统计某表中记录的总个数,以下哪项是正确的SQL语句___。
A. select Max(*) from 表名
B. select Sum(*) from 表名
C. select Count(*) from 表名
D. select Min(*) from 表名
【单选题】
要求表中数据的最大值,应使用什么函数___。
A. Max
B. Min
C. Sum
D. Avg
【单选题】
下列正确查询姓张的学生的语句是___。
A. select * from 表名 where 姓名= '张'
B. select * from 表名 where 姓名 like '张%'
C. select * from 表名 where 姓名= '%张%'
D. select * from 表名 where 姓名 like '张'
【单选题】
以下哪项不是Oracle数据库物理组件的类型___。
A. 数据文件
B. 控制文件
C. 日志文件
D. 表空间
【单选题】
关于数据控制语言中,收回所授予的权限的语句是___。
A. Create
B. Revoke
C. Grant
D. Update
【单选题】
Oracle数据库中,连接字符串的运算符是___。
A. +
B. &
C. is
D. ||
【单选题】
Oracle数据库中返回字符串长度的函数是___。
A. Substr
B. Replace
C. InStr
D. Length
【单选题】
Oracle数据库中按指定的精度进行四舍五入的函数是___。
A. Sign
B. Trunc
C. Round
D. Mod
【单选题】
转换日期类型为字符串的转换函数是___。
A. to_date
B. to_datetime
C. to_char
D. to_number
【单选题】
在数据库中,对象Index表示___。
A. 同义词
B. 表
C. 包
D. 索引
【单选题】
在SQL*PLUS环境中可以利用DBMS_OUTPUT包中的PUT_LINE方法来回显服务器端变量的值,但在此之前要利用一个命令打开服务器的回显功能,这一命令是___。
A. set server on
B. set serverecho on
C. set servershow on
D. set serveroutput on
【单选题】
以下哪个命令是DDL命令___。
A. CREATE
B. INSERT
C. COMMIT
D. SELECT
【单选题】
第一步用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
【单选题】
下列哪个命令是用于ORACLE中数据导出的 ___
A. expdp
B. impdp
C. input
D. output
【单选题】
___是用于控制数据访问的语言。
A. DML
B. DDL
C. DCL
D. DLL
【单选题】
NULL表示什么___。
A. 0
B. 空格
C. 值
D. 没有值
【单选题】
___锁用于锁定表,允许其他用户查询表中的行和锁定表,但不允许插入、更新和删除行。
A. 行共享
B. 行排他
C. 共享
D. 排他
【单选题】
___包用于显示PL/SQL块和存储过程中的调试信息。
A. DBMS_OUTPUT
B. DBMS_STANDARD
C. DBMS_INPUT
D. DBMS_SESSION
【单选题】
下列属于运算符是___。
A. 变量运算符
B. 符号运算符
C. 关系运算符
D. 数值运算符
【单选题】
在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
【单选题】
使用序列,为数据表添加数据的时候,一般使用___
A. currval
B. nextval
C. 序列名.currval
D. 序列名.nextval
【单选题】
闪回表之前需要设置___。
A. alter table 表名 enable row movement
B. alter database flashback on
C. alter system set recyclebin=on scope=both
D. alter database archivelog
【单选题】
查询当前用户拥有的角色,使用___。
A. select * from user_role_privs
B. select * from dba_sys_privs
C. select * from dba_role_privs
D. select * from user_sys_privs
【单选题】
导出scott的表,然后导入到另外一个方案中,要用的到核心关键词是___。
A. directory
B. dumpfile
C. tables
D. remap_schema
【单选题】
___能查询数据的名称、归档状态、闪回状态。
A. v$instance
B. v$database
C. dba_users
D. dba_tablespaces
推荐试题
【判断题】
多段床身接合面刮削时,将被刮的接合面端用枕木垫高的目的是便于刮研
A. 对
B. 错
【判断题】
更换清单,由主管工艺人员提出,由备件人员核定出价格,更换件包括机械,电器,液(气)压的备配件和外购件
A. 对
B. 错
【判断题】
任何提高劳动生产率的措施,都必须以经济效益为前提
A. 对
B. 错
【判断题】
精密机床导轨在的粗糙度要求是:每25mm×25mm在16~20点
A. 对
B. 错
【判断题】
工作台要牢固平稳,平台周围要保持整洁,通行要方便,1米内禁止堆放物件
A. 对
B. 错
【判断题】
两孔轴线相交成 90°角,一个孔直径为φ20mm,另一个孔直径是φ30mm,应该先钻穿直径大的孔
A. 对
B. 错
【判断题】
碳素工具钢和合金工具钢用于制造中、低速成型刀具
A. 对
B. 错
【判断题】
经纬仪整平时,经反复调整,直到仪器转到任意位置时,水准气泡最大偏离值小于二分之一格为止
A. 对
B. 错
【判断题】
刮削大型机床导轨面时,应在将导轨面上的零件全部拆除后进行,以保证刮削质量
A. 对
B. 错
【判断题】
要安排好培训计划,做好上课的准备工作,做到有组织,有计划地进行培训,做到定时间,定地点,定内容,定进度,定要求,有练习,有考核
A. 对
B. 错
【判断题】
轨道制作主要是轨道调直和接头,调直后对轨道进行编号,两条轨道上从端部或伸缩缝处算起,轨道接头至少要对齐,以使运转平稳
A. 对
B. 错
【判断题】
为实现电动机连续正转运行需采用具有接触器自锁的控制线路和手动正转控制回路
A. 对
B. 错
【判断题】
在修理带传动机构时,发现带轮孔超差额0.08mm,造成配合过松,一般可用镀铬法来加大轴颈尺寸
A. 对
B. 错
【判断题】
用经纬仪和平行光管测量机床转台分度误差时,应用专用心轴配装在转台中心孔中将经纬仪和心轴紧固联接在一起
A. 对
B. 错
【判断题】
采用双螺母螺纹式调整滚珠丝杠轴向间隙的方法结构紧凑,调整方便,应用广泛
A. 对
B. 错
【判断题】
若自准直仪上读数鼓轮每格角值分度值为1",则其线值分度值可用0.05mm/m表示
A. 对
B. 错
【判断题】
所有的紫色酒精,在 1 米内不准点有明火,不准放在暖气片上
A. 对
B. 错
【判断题】
固定式装配适用于单件和小批量模具的装配,以及装配精度要求较高,需要调整的部位较多的装配
A. 对
B. 错
【判断题】
我国对企业发生的事故,坚持“四不放过”原则进行处理
A. 对
B. 错
【判断题】
齿轮的齿侧间隙分为12 个等级
A. 对
B. 错
【判断题】
在机械设备中,凸轮表面误差将会引起扭转振动
A. 对
B. 错
【单选题】
What happens to the status of users already logged into ESXi Shell when a vSphere administrator enables lockdown mode?___
A. Users remain logged in and can run commands, except to disable lockdown mode.
B. Users remain logged in and can run commands, including disabling lockdown mode.
C. Users are immediately logged out of ESXi Shell.
D. Users are logged out after a timeout specified by the vSphere administrator.
【单选题】
What is the effective vSphere licensing level during the 60 day evaluation period?___
A. vSphere Foundation Essentials Plus
B. vSphere Standard
C. vSphere Enterprise
D. vSphere
E. nterprise Plus
【单选题】
To comply with security requirements, an administrator with a vCenter Server Appliance needs to force logoff of the vSphere web client after 10 minutes of inactivity.What should the administrator do to meet the requirement?___
A. Edit: /var/lib/vmware/vsphere-client/webclient.properties, modify session.timeout=10
B. Edit: /opt/vmware/vsphere-client/webclient.properties, modify session.timeout=600
C. Edit: /var/lib/vmware/vsphere-client/webclient.properties modify session.timeout=600
D. Edit: /opt/vmware/vsphere-client/webclient.properties, modify session.timeout=10
【单选题】
An administrator enables High Availability (HA) on a Virtual SAN cluster.Which network is used for HA Network Heatbeat configuration?___
A. The Management network.
B. The vMotion network.
C. The Virtual SAN network.
D. The Provisioning Traffic network.
【单选题】
A user wants to monitor a business-critical virtual machine to ensure that it doesn't run out of resources. What metric could be monitored in vRealize Operations to address this concern?___
A. Time Remaining badge
B. Compliance badge
C. Reclaimable Waste badge
D. Density badge
【单选题】
An administrator has recently installed a new ESXi 6.x Host, and during the configuration notices sporadic network problems. To check whether the issue occurred sometime during the configuration, the administrator would like to reset the system.How can this be accomplished in the shortest amount of time?___
A. Run the ESXi installer again and reinstall the host.
B. Select the Reset System Configuration option from the vSphere Client when connected directly to the host.
C. From the
D. irect Console User Interface, select Reset System Configuration.
【单选题】
A vApp is running out of compute resources when overall activity is high within the resource pool. At other times, everything is fine.What should be done to resolve this issue?___
A. Increase the size of the resource pool Shares.
B. Set the vApp's CPU and Memory Reservation Type to Expandable.
C. Set the vApp's CPU and Memory Limit to Unlimited.
D. Create a new resource pool with the existing hardware configuration.
【单选题】
A virtual machine has been renamed and an administrator is unable to find files with the new virtual machine name in the datastore.What is the reason for this?___
A. The names of the files on the datastore do not change.
B. The names of the files on the datastore have been corrupted.
C. The virtual machine needs to be re-added to the inventory.
D. The Distributed Resource Scheduler moved the virtual machine to another host.
【单选题】
An administrator has configured network connectivity for a new virtual machine, as shown in the Exhibit.What will occur with the network traffic of this virtual machine when communicating externally from vSwitch1?___
A. The virtual machine will communicate on both uplinks
B. The virtual machine will only communicate on vmnic1
C. The virtual machine will only communicate on vmnic2
D. The virtual machine will fail to communicate externally
【单选题】
An administrator is unable to create the first group in a new vRealize Operations environment. What is the likely cause of the problem?___
A. There are no group types defined.
B. The group is not defined in SSO.
C. There are more than 32 group types defined.
D. The description for the group is not provided.
【单选题】
A new vApp was built and tested in the corporate headquarters datacenter running vSphere 6.x. What condition would explain why the virtual machine is failing to boot in an offsite datacenter running on vSphere 5.5?___
A. The virtual machine was built with the default hardware version.
B. The VMFS 5 datastore is not compatible with virtual machines configured with vSphere 6.x.
C. a
D. RS 5.5 cluster cannot run virtual machines configured with vSphere 6.x.
【单选题】
An administrator is evaluating whether to deploy vCenter Server on a Windows server or on a vCenter Server appliance. The administrator has the following requirements: <A web browser will be utilized to manage the vSphere environment.> <16 ESXi hosts will be deployed.> <Licenses must be shared with a vCenter Server at another site.> <An external Oracle 10g database server will be used to host the vCenter Server database.> Why will the administrator need to deploy vCenter Server on a Windows server?___
A. Linked Mode is a requirement for the solution.
B. Oracle 10g is a requirement for the solution.
C. The vSphere web client is a requirement for the solution.
D. Management of more than 5 hosts is a requirement for the solution.
【单选题】
What is a benefit of using VMware Data Protection ?___
A. Provides support for guest-level backups and restores of Microsoft SQL Servers, Exchange Servers, and Share Point Servers.
B. Provides support for advanced storage services including replication, encryption, deduplication, and compression.
C. Provides direct access to VDP configuration integrated into the vSphere Client.
D. Reduces disk space consumed by virtual machine data using deduplication.
【单选题】
An administrator enables vSphere High Availability (HA) on an existing cluster with a large number of hosts and virtual machines. The administrator notices that the setup of vSphere HA on some of the hosts is failing. What step, if taken, might resolve this issue?___
A. Increase the value of the config.vpxd.das.electionWaitTimeSec setting.
B. Set the value of vpxd.das.aamMemoryLimit to 256.
C. Set the value of the das.useDefaultIsolationAddress setting to False.
D. Increase the value of the das.iostatsinterval setting.
【单选题】
An ESXi 6.x host consists of 24 logical cores. Hyperthreading is enabled on the host. What is the maximum number of vCPUs that can be assigned to a virtual machine on this host?___
A. 24
B. 48
C. 64
D. 128
【单选题】
By default, each ESXi 6.x host is provisioned with a certificate from which root certificate authority?___
A. RedHat Certificate Authority
B. VMware Certificate Authority
C. DigiCert Certificate Authority
D. Verisign Certificate Authority
【单选题】
An administrator is adding an NFS datastore as shown in the Exhibit. What is the purpose of the Servers to be added list?___
A. It contains the IP addresses of the NFS Storage Server to provide multipathing capability.
B. It contains the IP addresses of the ESXi hosts that mount the datastore.
C. It contains the IP addresses used for
D. ynamic Discovery of targets.
【单选题】
An administrator reports that the System Event log data is only available for 24 hours when reviewing the Hardware Status tab. Which condition could be responsible for the loss of data?___
A. A Reset event log was executed.
B. The statistical collection level was set to a value of 1.
C. The boot disk of the host is corrupt.
D. Syslog has been configured at the vCenter Server level.
【单选题】
During an upgrade, the ESXi 6.x installer finds an existing version of ESXi and a VMFS3 volume. No virtual machines exist on the host or VMFS3 volume. The requirement is to upgrade to VMFS5. Which option should be chosen to meet this requirement?___
A. Upgrade ESXi and preserve the VMFS datastore
B. Install ESXi and preserve the VMFS datastore
C. Install ESXi and overwrite the VMFS datastore
D. Upgrade
E. SXi and overwrite the VMFS datastore