吉大奥鹏15秋学期《数据库应用技术》在线作业二答案
更新时间:2024-04-15 16:01:01 阅读量: 综合文库 文档下载
- 吉大奥鹏教育推荐度:
- 相关推荐
吉大奥鹏15秋学期《数据库应用技术》
在线作业二答案
一、单选题(共 25 道试题,共 100 分。)
1. Given the code: EXEC SQL WITH most_cities AS ( SELECT b.id, b.name, a.cities FROM country a, staff b WHERE a.person = b.id AND cities > hreshold ) SELECT id, name, cities FROM most_cities INTO :id, :name, :cities WHERE cities IN (SELECT MAX(cities) FROM most_cities) Which of the following can reference MOST_CITIES? A. The current statement
B. Statements from any application C. All statements within this application
D. All statements within the current unit of work 正确答案:A
2. 如果一个用户USER1被授予了表TAB上的CONTROL特权,如果需要限制该用户对表的存取,应使用以下哪条命令?
A. REVOKE ALL ON TAB TO USER1 B. REVOKE ALL ON TAB FROM USER1 C. REVOKE CONTROL ON TAB TO USER1 D. REVOKE CONTROL ON TAB FROM USER1 正确答案:B
3. 事务的原子性是指()
A. 事务中包含的所有操作要么都做,要么都不做 B. 事务一旦提交,对数据库的改变是永久性的
C. 一个事务内部的操作及使用的数据对并发的其他事务是隔离的 D. 事务必须是使数据库从一个一致性状态变到另一个一致性状态 正确答案:A
4. Given the tables, the relationships and the statements: EMPLOYEE DEPT emp_num emp_name dept dept_id dept_name 1 Adams 1 1 Planning 2 Jones 1 2 Support 3 Smith 2 4 Williams 1 Relationship: employee.dept is a foreign key on dept.dept_id. stmt=\INTO employee VALUES (5,'jones',3)\EXEC SQL EXECUTE IMMEDIATE :stmt; stmt=\INTO employee VALUES (6,'jhonson',2)'; EXEC SQL EXECUTE IMMEDIATE :stmt; How many rows are successfully inserted? A. One row is inserted in EMPLOYEE B. No rows are inserted in EMPLOYEE C. Two rows are inserted in EMPLOYEE
D. One row is inserted in DEPT and 2 rows are inserted in EMPLOYEE 正确答案:A
5. 下述关于数据库系统的正确叙述是() A. 数据库中只存在数据项之间的联系
B. 数据库的数据项之间和记录之间都存在联系 C. 数据库的数据项之间无联系,记录之间存在联系 D. 数据库的数据项之间和记录之间都不存在联系 正确答案:B
6. Given the expression: WITH most_cities AS ( SELECT b.id,b.name,a.cities FROM country a, staff b WHERE a.person = b.id AND cities > hreshold ) SELECT * FROM most_cities In which of the following does MOST_CITIES exist? A. user tables B. server memory C. user table space
D. system catalog tables 正确答案:B
7. Given an ODBC/CLI program with a single connection, two threads and the following actions which complete successfully: Thread 1: INSERT INTO mytab VALUES (1) Thread 2: INSERT INTO mytab VALUES (2) Thread 1: COMMIT Thread 2: INSERT INTO mytab VALUES (3) Thread 1: ROLLBACK Thread 2: COMMIT How many records will be inserted and retained in the table MYTAB? A. 0 B. 1 C. 2 D. 3
正确答案:C
8. If a stored procedure returns multiple rows, which of the following must the calling application use to access the result set? A. A cursor
B. A select statement
C. A declared temporary table D. A table user-defined function 正确答案:A
9. 关系模型中的关系模式至少是() A. 1NF B. 2NF C. 3NF D. BCNF 正确答案:A
10. 数据库系统的并发控制的主要方法是采用()制。 A. 拒绝 B. 改为串行 C. 锁
D. 不加任何控制 正确答案:C
11. Which of the following is a benefit of user-defined functions? A. Improves application concurrency B. Improves blocking of result sets C. Simplifies application maintenance
D. Reduces memory requirements on the server 正确答案:C
12. Which of the following is used to run an embedded dynamic SQL UPDATE statement?
A. UPDATE B. . PREPARE C. . DECLARE D. . EXECUTE 正确答案:D
13. 实体是信息世界中的术语,与之对应的数据库术语为:() A. 文件 B. 数据库 C. 字段 D. 记录
正确答案:D
14. 下面哪个工具提供了对文本、图象、音频、视频和XML文档等非传统数据类型的处理能力?
A. DB2 数据仓库中心 B. DB2数据链接管理器 C. DB2关系扩展器
D. DB2 OLAP Starter Kit 正确答案:C
15. Given the following table: CREATE TABLE employee (name CHAR(10), salary DEC NOT NULL WITH DEFAULT) INSERT INTO employee (name, salary) VALUES ('SMITH', 30000) INSERT INTO employee (name) VALUES ('JONES') INSERT INTO employee (name, salary) VALUES ('ALI', 35000) Which of the following statements will retrieve more than one row?
A. SELECT salary FROM employee WHERE salary IN (SELECT (salary/(SELECT SUM(salary) FROM employee)) FROM employee)
B. SELECT COALESCE(AVG(salary)) FROM employee C. SELECT SUM(salary)/COUNT(*) FROM employee
D. SELECT salary/(SELECT SUM(salary) FROM employee) FROM employee 正确答案:D
16. 对于那些需要偶尔连接到公司数据上进行数据交换的用户可选择哪种版本的DB2?对于支持小规模的部门级应用,这些应用不需要存取驻留在OS/400、OS/390等平台上的远程数据库,则需要哪种级别的DB2 产品? A. 企业版 B. 工作组版 C. 企业扩展版 D. 个人版 E. 卫星版 正确答案:E
17. Given the following statements: EXEC SQL INSERT INTO employee VALUES(:new_emp, :new_name) EXEC SQL UPDATE company SET num_employees=num_employees+1 WHERE company_id=1 EXEC SQL COMMIT Which of the following can be added to the database so that the company table will still be updated without the need for the explicit UPDATE SQL statement? A. An INSERT trigger on COMPANY B. An UPDATE trigger on COMPANY
C. An INSERT trigger on EMPLOYEE D. An UPDATE trigger on EMPLOYEE 正确答案:C
18. 对于支持小规模的部门级应用,这些应用不需要存取驻留在OS/400、OS/390等平台上的远程数据库,则需要哪种级别的DB2 产品? A. 企业版 B. 工作组版 C. 企业扩展版 D. 个人版 E. 卫星版 F. 微型版 正确答案:B
19. 创建一个DMS类型的表空间,可以使用以下哪两种文件系统对象作为容器? A. 目录 B. 文件 C. DEVICE 正确答案:B
20. 发人员开发访问后台AIX上的DB2的windows程序,需要在windows开发平台上安装:
A. DB2运行时间客户端 B. DB2管理客户端
C. DB2应用程序开发客户端 D. DB2瘦客户端 正确答案:C
21. 执行下面两条SQL语句后: CREATE TABLE t1 ( c1 char(10) NOT NULL PRIMARY KEY, c2 int, c3 char(10), c4 char(10) NOT NULL, CONSTRAINT c4 UNIQUE (c1,c4) ) //自动创建索引 CREATE INDEX Index1 ON t1 (c2 ASC) 表t1上有几个索引? A. 0 B. 1 C. 2 D. 3 E. 4
正确答案:D
22. 向基本表增加一个新列后,原有元组在该列上的值为什么? A. TRUE B. FALSE C. 空值 D. 不确定 正确答案:C
23. 数据库系统的独立性是指(): A. 不会因为数据的变化而影响应用程序
B. 不会因为系统数据存储结构与数据逻辑结构的变化而影响应用程序 C. 不会因为存储策略的变化而影响存储结构
D. 不会因为某些存储结构的变化而影响其它的存储结构
正确答案:B
24. 如果想在数据导入的过程中创建表,应该 A. 使用IXF文件格式进行LOAD B. 使用WSF文件格式进行LOAD C. 使用IXF文件格式进行IMPORT D. 使用WSF文件格式进行IMPORT 正确答案:C
25. An application uses static SQL to connect to a remote DB2 server and inserts data into the CUST.ORDERS table on that remote DB2 server. To enable access to the remote DB2 server, FOO needs to create a package with default options so that BAR is the only non-administrative user that can use this package on the remote DB2 server. Which statement describes the privileges that FOO requires to accomplish this?
A. FOO requires EXECUTE privilege on the package.
B. FOO requires the privilege to create the package on the remote DB2 server.
C. FOO requires EXECUTE privilege on the package and INSERT privilege on CUST.ORDERS. D. FOO requires the privilege to create the package on the remote DB2 server and INSERT privilege on CUST.ORDERS. 正确答案:D
正在阅读:
吉大奥鹏15秋学期《数据库应用技术》在线作业二答案04-15
2018年吉安市小升初入学考试模拟考试试题与答案汇总(五份)01-19
中秋节诗歌朗诵稿精选7篇03-22
部编教材推荐名著《飞向太空港》精导精练11-13
2015最新学校学雷锋宣传标语04-21
新视野大学英语第三版第二册课文语法讲解 - Unit312-05
白蛋白紫杉醇说明书06-20
2014年国家公务员考试-行测模拟题之资料分析(9.12)03-08
导师管理制度03-12
现代应用文写作答案10-09
- 多层物业服务方案
- (审判实务)习惯法与少数民族地区民间纠纷解决问题(孙 潋)
- 人教版新课标六年级下册语文全册教案
- 词语打卡
- photoshop实习报告
- 钢结构设计原理综合测试2
- 2014年期末练习题
- 高中数学中的逆向思维解题方法探讨
- 名师原创 全国通用2014-2015学年高二寒假作业 政治(一)Word版
- 北航《建筑结构检测鉴定与加固》在线作业三
- XX县卫生监督所工程建设项目可行性研究报告
- 小学四年级观察作文经典评语
- 浅谈110KV变电站电气一次设计-程泉焱(1)
- 安全员考试题库
- 国家电网公司变电运维管理规定(试行)
- 义务教育课程标准稿征求意见提纲
- 教学秘书面试技巧
- 钢结构工程施工组织设计
- 水利工程概论论文
- 09届九年级数学第四次模拟试卷
- 吉大
- 应用技术
- 学期
- 作业
- 答案
- 数据库
- 在线
- 北航硕士论文模板(Word2007)(2) - 图文
- 实验五 图像分割
- 分数除法 精学笔记
- 《水乡歌》说课稿
- 解析函数的构造及其在流体力学中的应用
- 2017年北师大小升初数学试卷及答案
- 西方经济学知识点整理
- 压片机课程设计报告书
- 深圳市企业参保人员、非因工或退休后死亡丧葬补助费、一次性抚恤
- 2013概率统计期中考试卷
- 以“幼儿区角活动”为抓手,提升幼儿园保教质量
- 学前儿童家庭教育习题及答案-简答题
- RFC3576中文版
- 2.数据类型和运算符作业
- 模糊控制移动机器人文献综述
- 周恩来形象的几个深层思想(1990.1)
- 吸收塔施工方案(1倒装法) - 图文
- 高中物理选修3-4课后习题(完美解析版)
- 2018乡镇党委书记述职报告
- 全球气候变化对旅游业的影响分析