电大数据库应用技术期末试题考试资料小抄_第1页
电大数据库应用技术期末试题考试资料小抄_第2页
电大数据库应用技术期末试题考试资料小抄_第3页
电大数据库应用技术期末试题考试资料小抄_第4页
免费预览已结束,剩余1页可下载查看

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、电大【数据库应用技术】考试小抄1三级模式间存在两种映射,它们是( a )。a模式与子模式间,模式与内模式间2sql server系统中的所有系统级信息存储于哪个数据库( a )。amaster3下面关于tempdb数据库描述不正确的是(d)。d是用户建立新数据库的模板4在数据库技术中,面向对象数据模型是一种( b )。b结构模型5数据库管理系统常见的数据模型有( b )。b层次、关系和网状6用户看到的数据表,属于数据库系统三级模式中的( d模式7对数据的插入属于数据库管理系统( b )的功能。b数据操纵8保持数据的完整性属于数据库管理系统( c )的功能。c数据库的运行管理 9在sql ser

2、ver数据库中,默认情况下sys通常是( c )。c系统表表名的前缀 1设一个关系为r,如果它的每个属性都是不可再分的,则称这个关系是符合( a )。a第一范式2在第一个关系中出现,在第二个关系中不出现的记录组成的关系称为两个关系的( c )。c差3关系数据库规范化是为了解决关系数据库中的( a )问题。a插入、删除和数据冗余b提高查询的速度4关系模式中,满足2nf的模式,( b )。b必定是1nf1下述关于索引的描述,正确的是(b)建立索引后,会影响基本表的插入速度2下述关于视图的描述,正确的是c在sql server中,可以像基本表一样对视图进行查询操作3如果希望从学生表中查询出所有姓“张

3、”的同学,那么条件语句应该是( b )。bwhere 姓名 like 张4下列sql语句中,能够完成求某列最大值的是( b )。bselect max(age) from student5假定学生关系s(sno,sname,sex,age),课程关系c(cno,cname,teacher),学生选课关系sc(sno,cno,grade)。要查询选修了“计算机技术”课程的“女”学生姓名,将涉及到关系( d )。ds,c,sc1如果希望从学生表中查询出所有姓“李”的同学,那么条件语句应该是(b)。b、where 姓名 like 李2在一个教师关系中,能够成为主关键字(或称主码)的属性是(b)。b、

4、教师编号3从最终用户应用程序的视角看,数据库系统的三级模式结构是(c)。c、外模式、模式和内模式4在一个学生关系中,能够成为主关键字(或称主码)的属性是(c)。c、学号5有严格的数学基础的数据模型是(a)。a、关系模型6下列关于索引的说明不正确的是(a)。a、索引必须创建在主关键字之上7设关系r是满足第一范式的,若r中不存在非主属性对主键的部分函数依赖,则r符合(a)。a、第二范式8下列符合第三范式的关系是(d)。d、学生(学号,姓名,性别)9在第一个关系中出现,而在第二个关系中不出现的记录组成的新关系称为(d)。d、两个关系的差10数据库应用程序开发中,需求分析阶段的主要目的是(a)。a、回

5、答“干什么”的问题11用户使用sql server时,通常需要依次经过两个安全性阶段(c)。c、身份验证、权限认证12sql server数据库中的一个完整的备份通常要包括(a)。a、系统数据库、用户数据库和事务日志13下列哪些不属于索引的类型(d)。d、事务日志索引14下列sql语句中,能够完成并运算的是(a)。a、select * from 篮球爱好者union select * from 足球爱好者15设学生表和课程表的结构分别为(学号,姓名)和(学号,课程号,成绩),如果希望查询出“成绩大于90分的学生姓名”,则对应的sql语句是(d)。d、select 姓名 from 学生表,课程表

6、 where 学生表.学号=课程表.学号 and 课程表.成绩901如果希望从学生表中查询出所有姓“王”的同学,那么条件语句应该是( b )。b、where 姓名 like 王2通常情况下,“数据库管理系统”的英文缩写是( a )。a、dbms3从最终用户应用程序的视角看,数据库系统的三级模式结构是( c )。c、外模式、模式和内模式4在一个学生关系中,能够成为主关键字(或称主码)的属性是( c )。c、学号5有严格的数学基础的数据模型是( a )。a、关系模型6下列关于索引的说明不正确的是( a )。a、索引必须创建在主关键字之上7设关系r是满足第一范式的,若r中不存在非主属性对主键的部分函

7、数依赖,则r符合( a )。a、第二范式8下列符合第三范式的关系是( d)。d、学生(学号,姓名,性别)9在第一个关系中出现,而在第二个关系中不出现的记录组成的新关系称为(d)。d、两个关系的差10数据库应用程序开发中,需求分析阶段的主要目的是( a )。a、回答“干什么”的问题11用户使用sql server时,通常需要依次经过两个安全性阶段( c )。c、身份验证、权限认证12sql server数据库中的一个完整的备份通常要包括( a )。a、系统数据库、用户数据库和事务日志13sql server中进行数据库恢复的sql语句是( c )。c、restore database14下列sq

8、l语句中,能够完成并运算的是( a )。a、select * from 篮球爱好者 union select * from 足球爱好者15设学生表和课程表的结构分别为(学号,姓名)和(学号,课程号,成绩),如果希望查询出“成绩大于90分的学生姓名”,则对应的sql语句是( d )。d、select 姓名 from 学生表,课程表 where 学生表.学号=课程表.学号 and 课程表.成绩901下列( )是指数据库管理系统。d、dbms 2有严格的数学基础并在此基础上发展起来的数据库模型是()。c、关系模型3在销售商品关系中,能够成为主关键字(或称主码)的属性是()。b、商品编号4sql se

9、rver系统中的所有系统级信息存储于()数据库中。amaster 5关系数据库规范化理论是为解决关系数据库中()问题而引入的。a、插入、删除和数据冗余6下列符合第三范式的关系是( )。b、零件(零件编号,零件名称,零件重量,零件储存的仓库编号)7如果希望从学生表中查询出最大年龄的同学,那么语句中应该包含( )。b、select max (年龄) as 最大 from 学生表8下列关于索引的说明不正确的是()。b、索引一经建立就需要人工进行维护9在第一个关系中出现,在第二个关系中不出现的记录组成的新关系称为( )。d、两个关系的差10 sql server默认的登录账号为( )。a、sa11数据

10、库应用程序开发中,( )属于物理设计。b、存储方法设计12下列sql语句中,能够完成删除功能的是()。d、delete from 教师表 where 性别=男13查询姓名中带有“芳”字的学生,则条件语句应包含( )。b、where 姓名 like %芳14下列sql语句中,限制字段取值范围的约束是( )。c、性别 char (2) not null check (性别男or 性别女)15设学生表和成绩表的结构分别为(学号,姓名,所在系)和(学号,课程名,成绩),如果希望按分数降序查询出“英语系中选修了计算机课程的学生姓名和成绩”,则对应的sql语句是( )。d、select 姓名,成绩 fro

11、m 学生表,成绩表 where 所在系英语系 and课程名计算机 and 学生表.学号=课程表.学号 order by 成绩 desc1关系数据库系统采用关系模型作为数据的组织方式。关系模型通常由三部分组成()。a数据结构、关系操作集合和关系的完整性2以下不属于sql server数据库特点的是()。c基于面向对象的数据模型3sql server数据库一般包括两大类数据库类型()。d系统数据库和用户数据库4在一个物资台账数据表中,能够成为主关键字(或称主码)的字段是()。b物资编码5在物理层面,sql server数据库是由数据文件和事务日志文件两个操作系统文件组成的,它们的后缀分别是()。a

12、mdf和ldf6sql server数据库中的系统表的表名通常以()为前缀。bsys7设一个关系为r,x和y是它的两个属性集。若对于x上的每个值都有y上的一个惟一值与之对应,则称x和y()。c具有函数依赖关系8下列符合第三范式的关系是()。b教师(编号,姓名,职称)9一个关系中每条记录和第二个关系的每条记录进行连接,所组成的新关系称为()。c两个关系的积10sql server提供的nchar、nvarchar、ntext等几种双字节数据类型实际上是一种()。aunicode数据类型11一个用户访问sql server通常要依次经过4个层次的安全控制,分别是()。a操作系统、服务器、数据库、表

13、和列12下列哪些不属于索引的类型()。d事务日志索引13sql server中进行数据库备份的sql语句是()。bbackup database14在成绩数据表中,要计算某课程的平均成绩,可采用()。davg函数15设课程成绩表的结构为(学号,课程号,成绩),如果希望查询出“成绩大于90分且课程号首字母为a的所有记录”,则对应的sql语句是()。cselect * from 课程成绩表 where 成绩90 and 课程号 like a%1计算机数据处理技术大致经历了( 人工管理 )、( 文件管理 )、( 数据库管理 )等不同的发展阶段。2数据库系统由( 外模式 )、( 模式 )和( 内模式

14、)三级抽象模式构成。3 数据库管理系统的主要功能包括( 数据定义 )、( 数据操纵 )、( 数据库的运行管理 )、( 数据库的建立和维护 )。4关系模型由三部分组成( 数据结构 )、( 关系操作集合 )和( 关系的完整性 )。5sql server提供了大量易用的管理工具,比较常用的主要有( 服务管理器 )、( 企业管理器 )和( 查询分析器 )。6数据文件的后缀是( mdf )。7事务日志文件的后缀是( ldf )。8sql server数据库分为 ( 系统数据库 )和( 用户数据库 )两种类型。1sql数据定义语言的主要作用是创建存储数据的结构,而数据操纵语言的主要作用则是向数据库中填写数

15、据,具体包括( 增加 )、( 删除 )、( 修改 )等操作。2当需要对查询结果进行排序时,可以指定其排序方式,字段后使用( asc )表示升序,( desc )表示降序。3视图是一个虚表,它是从( 一个或多个基本表 )中导出的表。1数据库设计一般包括 需求分析 、 概念设计 、 逻辑设计 、 物理设计 、 数据库实施 和 运行维护 等阶段。2数据库应用系统的建设包括 结构设计 和 行为设计 两个方面。3数据库设计的主要原则包括 表设计原则 、 字段设计原则 和其他原则。4e-r图的设计关键在于对 实体 、 联系 的选择和表示。5物理设计的主要内容包括 存储记录的格式设计 、 存储方法设计 、

16、访问方法设计 以及 完整性和安全性考虑 。1数据库系统的三级模式结构是指数据库系统由外模式、 模式 和 内模式 三级抽象模式构成。2备份是指将数据从硬盘复制到 可移动媒体 上的过程。3“实体一联系”方法是描述数据库概念模型的主要方法,一般称这种方法为 er方法 (或er图方法)。4用户使用sql server数据库时,一般需要经过两个安全性阶段: 身份验证 和权限认证。5e-r图设计一般在数据库设计的 概念设计 阶段使用。1关系模型由三个部分组成,分别是 数据结构 、关系操作集合和 关系的完整性 。2备份是指将数据从硬盘复制到 可移动 媒体上的过程。3数据库应用系统的建设包括结构设计和 行为设

17、计 两个方面。4关系完整性是指关系模型中数据的正确性、 一致性 和 有效性 。5sql server 中的事务处理控制语句, rollback tran saction 实现回滚一个事务。1数据库系统的三级模式结构是指数据库系统由外模式、 模式 和 内模式 三级抽象模式构成。2进行数据库备份时,必须同时复制主数据文件和事务日志文件。3“实体一联系”方法是描述数据库概念模型的主要方法,一般称这种方法为e-r方法(或er图方法)。4用户使用sql server数据库时,一般需要经过两个安全性阶段:身份验证和权限认证。1sql语言共分为四大类,即数据定义语言,数据查询语言,数据操纵语言和数据控制语言

18、。2能够惟一标识某条记录的属性称为 主键 。3关系的规范化程度可分为多个级别,但通常只需要达到第 三 范式即可。4备份是指将数据从硬盘复制到 可移动 媒体上的过程。1能够惟一表示数据表中的每条记录的字段或者字段的组合称为主码或主键()。2sql server数据库中的null值(空值)表示的是 “空格”或“0”值()3一个不规范的关系模式通常会引发插入异常、删除异常和更新异常,导致大量的数据冗余。()4根据索引的特点,应该对那些数据量大、查询频度较高、实时性要求强的基本表创建索引,()5数据库设计是指对于一个给定的应用环境,构造最优的数据库模式,建立数据库及其应用系统,有效存储数据,满足用户信

19、息要求和处理要求。()6参照完整性规则通常是指在两个参照和被参照关系中,参照关系中每条记录的外键或者为空,或者等于被参照关系中某条记录的主键。()1数据流图是需求分析的常用工具之一,人们也经常称它为dfd图( )。2数据库中只有一个模式,也只有一个内模式,所以模式内模式映像是惟一的。( )。3sql server数据库中的null值(空值)表示的是 “空格”或“0”值( )4sql server中的tempdb数据库是一个临时数据库,属用户数据库( )5sql虽被称为“查询语言”,其功能却不仅仅限于查询( )1计算机数据处理技术大致经历了人工管理、文件管理和sql server数据库管理三大阶

20、段()。2能够惟一表示数据表中的每条记录的字段或者字段的组合称为主码或主键()。3sql server数据库中的null值(空值)表示的是 “空格”或“0”值()4一个不规范的关系模式通常会引发插入异常、删除异常和更新异常,导致大量的数据冗余。()5目前的关系数据库系统一般都支持标准sql语句()1delete table的功能是删除表结构。( )2在教师任课关系(教师编号,教师姓名,教师职称,课程号,课程名,课时费)中,主键是教师编号。( )3触发器是一种特殊的存储过程,它基于一个表创建,可以针对多个表进行操作。()4做结构设计时,要尽量使设计符合第三范式的要求。( )5登录账号用于身份验证

21、,用户账号用于权限验证。( )emloyment tribunals sort out disagreements between employers and employees. you may need to make a claim to an employment tribunal if: you dont agree with the disciplinary action your employer has taken against you your employer dismisses you and you think that you have been dismissed

22、 unfairly. for more informu, take advice from one of the organisations listed underfur ther help. employment tribunals are less formal than some other courts, but it is still a legal process and you will need to give evidence under an oath or affirmation. most people find making a claim to an employ

23、ment tribunal challenging. if you are thinking about making a claim to an employment tribunal, you should get help straight away from one of the organisations listed underfurther help. ation about dismissal and unfair dismissal, seedismissal. you can make a claim to an employment tribunal, even if y

24、ou haventappealedagainst the disciplinary action your employer has taken against you. however, if you win your case, the tribunal may reduce any compensation awarded to you as a result of your failure to appeal. remember that in most cases you must make an application to an employment tribunal withi

25、n three months of the date when the event you are complaining about happened. if your application is received after this time limit, the tribunal will not usually accept i. if you are worried about how the time limits apply to you if you are being represented by a solicitor at the tribunal, they may

26、 ask you to sign an agreement where you pay their fee out of your compensation if you win the case. this is known as adamages-based agreement. in england and wales, your solicitor cant charge you more than 35% of your compensationif you win the case. you are clear about the terms of the agreement. i

27、t might be best to get advice from an experienced adviser, for example, at a citizens advice bureau. to find your nearest cab, including those that give advice by e-mail, click onnearest cab. for more information about making a claim to an employment tribunal, seeemployment tribunals. the (lack of)

28、air up there watch m cay man islands-based webb, the head of fifas anti-racism taskforce, is in london for the football associations 150th anniversary celebrations and will attend citys premier league match at chelsea on sunday. i am going to be at the match tomorrow and i have asked to meet ya ya t

29、oure, he told bbc sport. for me its about how he felt and i would like to speak to him first to find out what his experience was. uefa hasopened disciplinary proceedings against cskafor the racist behaviour of their fans duringcitys 2-1 win. michel platini, president of european footballs governing

30、body, has also ordered an immediate investigation into the referees actions. cska said they were surprised and disappointed by toures complaint. in a statement the russian side added: we found no racist insults from fans of cska. age has reached the end of the beginning of a word. may be guilty in h

31、is seems to passing a lot of different life became the appearance of the same day; may be back in the past, to oneself the paranoid weird belief disillusionment, these days, my mind has been very messy, in my mind constantly. always feel oneself should go to do something, or write something. twenty

32、years of life trajectory deeply shallow, suddenly feel something, do it.一字开头的年龄已经到了尾声。或许是愧疚于自己似乎把转瞬即逝的很多个不同的日子过成了同一天的样子;或许是追溯过去,对自己那些近乎偏执的怪异信念的醒悟,这些天以来,思绪一直很凌乱,在脑海中不断纠缠。总觉得自己似乎应该去做点什么,或者写点什么。二十年的人生轨迹深深浅浅,突然就感觉到有些事情,非做不可了。the end of our life, and can meet many things really do?而穷尽我们的一生,又能遇到多少事情是真正地非做

33、不可? during my childhood, think lucky money and new clothes are necessary for new year, but as the advance of the age, will be more and more found that those things are optional; junior high school, thought to have a crush on just means that the real growth, but over the past three years later, his w

34、riting of alumni in peace, suddenly found that isnt really grow up, it seems is not so important; then in high school, think dont want to give vent to out your inner voice can be in the high school children of the feelings in a period, but was eventually infarction when graduation party in the throa

35、t, later again stood on the pitch he has sweat profusely, looked at his thrown a basketball hoops, suddenly found himself has already cant remember his appearance. baumgartner the disappointing news: mission aborted. r plays an important role in this mission. starting at the ground, conditions have

36、to be very calm - winds less than 2 mph, with no precipitation or humidity and limited cloud cover. the balloon, with capsule attached, will move through the lower level of the atmosphere (the troposphere) where our day-to-day weather lives. it will climb higher than the tip of mount everest (5.5 mi

37、les/8.85 kilometers), drifting even higher than the cruising altitude of commercial airliners (5.6 miles/9.17 kilometers) and into the stratosphere. as he crosses the boundary layer (called the tropopause),e can expect a lot of turbulence. we often close ourselves off when traumatic events happen in

38、 our lives; instead of letting the world soften us, we let it drive us deeper into ourselves. we try to deflect the hurt and pain by pretending it doesnt exist, but although we can try this all we want, in the end, we cant hide from ourselves. we need to learn to open our hearts to the potentials of

39、 life and let the world soften us.生活发生不幸时,我们常常会关上心门;世界不仅没能慰藉我们,反倒使我们更加消沉。我们假装一切仿佛都不曾发生,以此试图忘却伤痛,可就算隐藏得再好,最终也还是骗不了自己。既然如此,何不尝试打开心门,拥抱生活中的各种可能,让世界感化我们呢? whenever we start to let our fears and seriousness get the best of us, we should take a step back and re-evaluate our behavior. the items listed belo

40、w are six ways you can open your heart more fully and completely.当恐惧与焦虑来袭时,我们应该退后一步,重新反思自己的言行。下面六个方法有助于你更完满透彻地敞开心扉。whenever a painful situation arises in your life, try to embrace it instead of running away or trying to mask the hurt. when the sadness strikes, take a deep breath and lean into it. wh

41、en we run away from sadness thats unfolding in our lives, it gets stronger and more real. we take an emotion thats fleeting and make it a solid event, instead of something that passes through us.当生活中出现痛苦的事情时,别再逃跑或隐藏痛苦,试着拥抱它吧;当悲伤来袭时,试着深呼吸,然后直面它。如果我们一味逃避生活中的悲伤,悲伤只会变得更强烈更真实悲伤原本只是稍纵即逝的情绪,我们却固执地耿耿于怀by ut

42、ilizing our breath we soften our experiences. if we dam them up, our lives will stagnate, but when we keep them flowing, we allow more newness and greater experiences to blossom.深呼吸能减缓我们的感受。屏住呼吸,生活停滞;呼出呼吸,更多新奇与经历又将拉开序幕。if we dont do that it will go on and go on. we have to stop it; we need the coura

43、ge to do it.his comments came hours after fifa vice-president jeffrey webb - also in london for the fas celebrations - said he wanted to meet ivory coast international toure to discuss his complaint.cska general director roman babaev says the matter has been exaggerated by the ivorian and the britis

44、h media.blatter, 77, said: it has been decided by the fifa congress that it is a nonsense for racism to be dealt with with fines. you can always find money from somebody to pay them.it is a nonsense to have matches played without spectators because it is against the spirit of football and against th

45、e visiting team. it is all nonsense.we can do something better to fight racism and discrimination.this is one of the villains we have today in our game. but it is only with harsh sanctions that racism and discrimination can be washed out of football.the (lack of) air up there watch mcayman islands-b

46、ased webb, the head of fifas anti-racism taskforce, is in london for the football associations 150th anniversary celebrations and will attend citys premier league match at chelsea on sunday.i am going to be at the match tomorrow and i have asked to meet yaya toure, he told bbc sport.for me its about

47、 how he felt and i would like to speak to him first to find out what his experience was.uefa hasopened disciplinary proceedings against cskafor the racist behaviour of their fans duringcitys 2-1 win.michel platini, president of european footballs governing body, has also ordered an immediate investigation into the referees actions.cska said they were surprised and disappointed by toures complaint. in a statement the russian side added: we found no racist insults from fans of cska.baumgartner the disappointing news: mission aborted.the supersonic descent coul

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论