【单选题】
有关系:教师(编号,姓名,生日,职称),从关系中查询所有教授的情况应使用___关系运算。
A. 投影
B. 选择
C. 连接
D. 笛卡儿积
查看试卷,进入试卷练习
微信扫一扫,开始刷题
答案
B
解析
暂无解析
相关试题
【单选题】
有关系:教师(编号,姓名,生日,职称),从关系中查询所有教师的姓名和生日应使用___关系运算。
A. 投影
B. 选择
C. 连接
D. 笛卡儿积
【单选题】
有关系:销售(商品号,推销员编号,销售日期,客户名),那么,该关系的主键是___。
A. 商品号
B. 商品号,推销员编号
C. (商品号,推销员编号,销售日期)
D. (商品号,推销员编号,销售日期,客户名)
【单选题】
有关系:教学(学号、教工号、课程号),每个学生可以选修多门课程,每门课程可以由多名学生来选修,每个老师可以讲授多门课程,每门课程可以由多个老师来讲授,那么该关系的主键是___。
A. 课程号
B. 教工号
C. (学号,教工号,课程号)
D. (学号,教工号)
【单选题】
关系代数中的连接运算是由___操作导出的。
A. 选择和投影
B. 选择和笛卡儿积
C. 投影、选择、笛卡儿积
D. 投影和笛卡儿积
【单选题】
下面___不是SQL Server的数据库对象。
A. SQL语句
B. 存储过程
C. 索引
D. 触发器
【单选题】
SQL Server的物理存储主要包括两类文件,它们是___。
A. 图片文件和文本文件
B. 数据文件和事务日志文件
C. 函数文件和数据文件
D. 源文件和可执行文件
【单选题】
SQL Server事务日志文件的扩展名为___。
A. mdf
B. ndf
C. ldf
D. idx
【单选题】
下列sql语句中,___ 不是数据定义语句
A. CREATE TABLE
B. drop view
C. create view
D. grant
【单选题】
SQL语言通常称为___
A. 结构化查询语言
B. 结构化控制语言
C. 结构化定义语言
D. 结构化操纵语言
【单选题】
以下___不是数据库对象
A. 表
B. 视图
C. 索引
D. 备份
【单选题】
包含数据库的启动信息的文件是___
A. 数据文件
B. 事务日志文件
C. 文本文件
D. 图像文件
【单选题】
用于数据库恢复的重要文件是___
A. 数据库文件
B. 索引文件
C. 备注文件
D. 事务日志文件
【单选题】
如果表S(A,B,C)中,设置A为主键,当向S表插入一行新数据时,该行___。
A. A,B,C属性的值都可以与已有的行相同
B. A,B,C属性的值都不能与已有的行相同
C. A属性的值不能与已有的行相同,但允许为空
D. A属性的值不能与已有的行相同,也不能为空
【单选题】
在SQL Server的以下数据类型中,最适合表示一个人的体重(公斤,保留一位小数)的是___。
A. char
B. float
C. tinyint
D. numeric
【单选题】
对于数据库中的表A,如果想要清空A中的数据且不留下事务日志,应使用___。
A. DELETE TABLE A
B. DROP TABLE A
C. ALTER TABLE A
D. TRUNCATE TABLE A
【单选题】
对R和S进行连接查询时,如果想在显示中保留R的所有行应该使用___。
A. R全外连接S
B. R内连接S
C. R左外连接S
D. 右外连接S
【单选题】
对R和S进行连接查询时,如果想在显示中保留S的所有行应该使用___。
A. R全外连接S
B. R内连接S
C. R左外连接S
D. R右外连接S
【单选题】
对R和S进行连接查询时,如果想在显示中保留R和S的所有行应该使用___。
A. R全外连接S
B. R内连接S
C. R左外连接S
D. 右外连接S
【单选题】
对工资表(员工号,姓名,部门号,月薪)进行查询,分部门统计人数和平均工资,查询语句应使用___。
A. SELECT 部门号,Count(*),AVG(月薪) FROM 工资表 GROUP BY 月薪
B. SELECT 姓名,Count(*),AVG(月薪) FROM 工资表 GROUP BY 部门号
C. SELECT 部门号,Count(月薪),AVG(*) FROM 工资表 GROUP BY 部门号
D. SELECT 部门号,Count(月薪),AVG(月薪) FROM 工资表 GROUP BY 部门号
【单选题】
学生成绩表grade中有字段score(float),现要把所有在55-60之间的分数提高5分,以下语句正确的是___
A. update grade set score=score+5 where score in 55…60
B. update grade set score=score+5 where score>=55 and score<=60
C. update grade set score=score+5 where score between 55 or 60
D. update grade set score=score+5 where score<=55 and score>=60
【单选题】
建立索引的主要目的是___。
A. 节省存储空间
B. 提高检索速度
C. 提高检索和更新速度 C. 增强数据安全性
【单选题】
对于索引,以下说法正确的是___。
A. 一个数据表只能有一个索引
B. 一个数据表只能有一个唯一索引
C. 一个数据表只能有一个聚集索引
D. 一个数据标只能有一个非聚集索引
【单选题】
删除视图用下面哪条语句___。
A. DROP VIEW
B. DELETE VIEW
C. REMOVE VIEW
D. RM VIEW
【单选题】
对所有的视图都可以进行___操作。
A. 插入数据
B. 选择数据
C. 更新数据
D. 删除数据
【单选题】
在视图上不能完成的操作是___
A. 更新视图
B. 查询
C. 在视图上定义新的表
D. 在视图上定义新的视图
【单选题】
索引是对数据库表中___字段的值进行排序。
A. 一个
B. 多个
C. 一个或多个
D. 零个
【单选题】
下列关于索引的描述不正确的是___
A. 索引是一个指向表中数据的指针
B. 索引是在元组上建立的一种数据库对象
C. 索引的建立和删除对数据毫无影响
D. 表被删除时将同时删除表上建立的索引
【单选题】
在创建表的同时,可以用___ 来创建唯一性索引
A. 设置主键约束或唯一约束
B. create table ,create index
C. create index
D. 都可以
【单选题】
在关系型数据库中,用于实现参照完整性的办法是___。
A. 设置默认值
B. 设置检查约束
C. 设置外键约束
D. 设置主键约束
【单选题】
以下方法中,用于实现用户自定义完整性的办法是___。
A. 为字段设置数据类型
B. 设置检查约束
C. 设置外键约束
D. 设置主键约束
【单选题】
如果有两个事务同时对数据库中同一数据进行操作,不会引起冲突的是___。
A. 一个DELETE和一个SELECT
B. 一个SELECT和一个DELETE
C. 两个UPDATE
D. 两个SELECT
【单选题】
当触发器执行时,系统会创建临时表保存用户操作更改的行的新值和旧值, UPDATE操作所涉及的值会被临时保存在___。
A. updated表
B. inserted 表
C. deleted表
D. inserted表和deleted表
【单选题】
在表或视图上执行___操作不会激活触发器
A. insert
B. update
C. delete
D. select
【单选题】
存储过程是一组预定义并___的t-sql语句
A. 保存
B. 编译
C. 解释
D. 编写
【单选题】
一个事务要么全部完成,要么全部不做,一个事务中对数据库的所有操作都是不可分割的操作序列。这是事务的___ 特性。
A. 原子性
B. 一致性
C. 隔离性
D. 持久性
【单选题】
表示两个或多个事务可以同时运行而不互相影响的是___
A. 原子性
B. 一致性
C. 隔离性
D. 持久性
【单选题】
t-sql语句中,用___ 语句实现对事务的回滚
A. create table
B. rollback
C. grant和revoke
D. commit
【单选题】
为了防止一个用户的工作不适当地影响另一个用户,应采取___
A. 完整性控制
B. 访问控制
C. 并发控制
D. 安全性控制
【单选题】
在数据库系统中,死锁属于___
A. 系统故障
B. 事务故障 D 介质故障 D 程序故障
【单选题】
一组具有相同权限的用户被称为___。
A. 角色
B. 数据
C. 视图
D. 结构
推荐试题
【判断题】
对抗日统一战线中的中间势力,中国共产党必须贯彻又联合又斗争的政策。
A. 对
B. 错
【判断题】
在中国共产党七大上,毛泽东明确提出了“马克思主义中国化”这个命题。
A. 对
B. 错
【判断题】
新民主主义理论的系统阐明,标志着毛泽东思想得到多方面展开而达到成熟。
A. 对
B. 错
【判断题】
反对宗派主义以整顿党风,是延安整风运动最主要的任务。
A. 对
B. 错
【判断题】
1945年8月14日,日本天皇广播“终战诏书”,标志着中国人民抗日战争战争胜利结束。
A. 对
B. 错
【判断题】
中国的抗日战争开辟了世界第一个大规模反法西斯战场,是世界反法西斯战争的东方主战场。
A. 对
B. 错
【判断题】
美国是最早为中国抗日战争提供援助的国家。
A. 对
B. 错
【判断题】
中国人民抗日战争,是近代以来中华民族反抗外敌入侵第一次取得完全胜利的民族解放战争。
A. 对
B. 错
【判断题】
世界反法西斯力量对中国的支持,是中国人民抗日战争胜利的决定性因素。
A. 对
B. 错
【判断题】
二战以后,在国共问题上,美国奉行中立政策,要求国民党和共产党和平解决政治纷争,反对国民党政府打内战。
A. 对
B. 错
【判断题】
抗战胜利后,国民党统治集团的根本目标是使中国恢复到战前的状态,继续走资本主义发展道路。
A. 对
B. 错
【判断题】
抗战胜利初期,中国民主同盟主张“以民主的方式争取民主,以合法地行动争取合法的地位”,企图走第三条道路。
A. 对
B. 错
【判断题】
1946年1月政治协商会议决议虽不是新民主主义性质的,但在一个时期内,是否忠实履行它,是人民衡量政治是非的重要尺度。
A. 对
B. 错
【判断题】
从1946年到1949年,中国共产党领导中国人民解放军,经过战略防御、战略相持、战略反攻三个阶段,最后打败了国民党,取得了解放战争的胜利。
A. 对
B. 错
【判断题】
《中国土地法大纲》是中国共产党制定和颁布的第一个土地改革法令,为打败蒋介石、建立新中国的建立奠定了深厚的群众基础。
A. 对
B. 错
【判断题】
国统区第二条战线的形成,表明在不仅在军事战线上,而且在政治战线上,国民党都打了败仗。
A. 对
B. 错
【判断题】
抗战胜利后,一些民主党派领导人所主张的“中间路线”实质上就是资产阶级共和国方案,是旧民主主义的道路。
A. 对
B. 错
【判断题】
内战爆发后,客观形势决定了人民没有走中间路线的余地,原先主张走第三条道路的各党派都靠近了中国共产党,站到了新民主主义革命的立场上来。
A. 对
B. 错
【判断题】
1949年9月的召开的中国人民政治协商会议,是新中国的创建会议,《共同纲领》起着临时宪法的作用。
A. 对
B. 错
【判断题】
民主党派参加新政协并在新中国参政,标志着民主党派地位的根本变化,它们不再是在野党,成为了中国人民民主专政的参加者。
A. 对
B. 错
【判断题】
人民民主专政的新中国的创建,标志着近代以来中国面临的两大历史任务的基本完成。
A. 对
B. 错
【单选题】
A vSphere content library administrator is attempting to unpublish the content library, but the option is grayed out as shown in the Exhibit. Which statement identifies the reason for not being able to unpublish? ___
A. The content library is optimized for syncing over HTTP.
B. A synchronization operation is in progress with this content library.
C. There are active subscriptions on this content library.
D. Underlying storage for this content library is not accessible.
【单选题】
Assuming a mirrored (RAID-1) object configuration, how many hosts must contribute storage in a non-stretched VMware vSAN cluster to satisfy the “Number of failures to tolerate” policy option?“n” is the desired “Number of failures to tolerate” value for all options.___
A. 2n+2
B. 2n
C. 2n+1
D. 3n
【单选题】
An administrator must change the statistics level for short-term performance monitoring and wants to collect metrics for all counters, excluding minimum and maximum rollup values. What would be the statistics level?___
A. Level 3
B. Level 1
C. Level 2
D. Level 4
【单选题】
In a vSphere environment, two resource pools are created as shown in the Exhibit. Each VM is configured with 1 GB of memory. When the administrator tried to power on VM3, the operation failed. What action in the resource pool settings will allow VM3 to power on successfully?___
A. Deselect Expandable Memory Reservation
B. Increase Memory Reservation
C. Deselect Expandable CPU Reservation
D. Increase the CPU Reservation
【单选题】
Which network is used by vSphere HA when VMware vSAN is enabled?___
A. Management network
B. vSphere Replication network
C. vMotion network
D. VSAN network
【单选题】
Which statement is correct when migrating from a Windows vCenter Server to the vCenter Server Appliance 6.5?___
A. Migration deployments do not migrate local OS users from the source vCenter Server.
B. Migration deployments support DHCP on the source vCenter Server.
C. Migration deployments allow the source vCenter Server to remain powered on afterwards.
D. Migration deployments support custom ports for all services on the source vCenter Server.
【单选题】
How can failback of a recovered virtual machine in vSphere Replication be performed?___
A. No action required, because failback is automatically performed to the source site.
B. Configure a new replication in the reverse direction at the target site.
C. Disable or Stop the virtual machine replication on the source site.
D. Power off and unregister the virtual machine on the target site.
【单选题】
After upgrading the vSphere infrastructure and VMware Tools to version 6.5, the “Upgrade VM Compatibility” option is grayed out in the vSphere Web Client. (See Exhibit.) What must the administrator do to enable the VM compatibility upgrade?___
A. VMware Tools should be upgraded last.
B. Restart the ESXi server.
C. Uninstall VMware Tools.
D. Power off the virtual machine.
【单选题】
What availability mode does vCenter HA provide?___
A. Active-Passive
B. Active-Standby
C. Active-Active
D. Load-balanced
【单选题】
In which scenario will vSphere DRS balance resources when set to Fully Automated?___
A. Hosts with only shared storage
B. Hosts are part of a vSphere HA cluster
C. Power Management is set to Balanced on hosts
D. Hosts with shared or non-shared storage
【单选题】
What VMware technology can be used to move physical servers to the vSphere infrastructure?___
A. VMware vMotion
B. VMware Converter
C. VMware vCenter Server
D. OVF transport
【单选题】
Upgrading vCenter Server with Microsoft SQL database fails with the following error message: The DB User entered does not have the required permissions needed to install and configure vCenter Server with the selected DB. Please correct the following error(s): %sWhat could cause this error?___
A. incorrect ports open on SQL Server
B. incorrect database on the SQL server
C. incorrect compatibility mode on the SQL server
D. incorrect permission on SQL Server database
【单选题】
What is a potential downside of having more than four paths per datastore?___
A. limits the storage protocols
B. increases storage latency for VM
C. limits the path selection policies
D. limits the number of LUNs per host
【单选题】
Which feature facilitates the sharing of templates via vCenter Server?___
A. Content Library
B. OVF
C. folders
D. vApp
【单选题】
A vSphere Administrator is in the process of configuring replication for a virtual machine, but is not able to select the Recovery Point Objective (RPO) value of 5 minutes. Which statement could explain why the RPO value cannot be lower than 15 minutes?___
A. The OS quiescing option is selected for Replication options.
B. The virtual machine hardware version is not compatible.
C. The target and source sites use different types of datastores.
D. The target and source sites are not using VMFS 6.0 datastore.
【单选题】
What advanced parameter defines a custom isolation IP address for a vSphere HA cluster?___
A. das.usedefaultisolationaddress
B. das.isolationshutdowntimeout
C. fdm.isolationpolicydelaysec
D. das.isolationaddress
【单选题】
Which method is supported for backing up the virtual machine that contains vCenter Server?___
A. differential
B. incremental
C. full image
D. individual disks
【单选题】
A vSphere Administrator must ensure that a user is able to view and manage the system configuration in vSphere Web Client. In the vCenter Single Sign-On domain, which group should the user be a part of?___
A. SystemConfiguration.BashShellAdministrators
B. ComponentManager. Administrators
C. Administrators
D. SystemConfiguration.Administrators
【单选题】
What is the minimum number of hosts that must contribute capacity to a non-ROBO single site VMware vSAN cluster?___
A. 1
B. 64
C. 3
D. 2