Computer English
Chapter 11 Database
Management
Chapter 11 Database Management
计算机专业英语 11-2
Key points:
useful terms and definitions
of Database Management
Difficult points:
Classification of the logical
structuring techniques of DBMS
Chapter 11 Database Management
计算机专业英语 11-3
Requirements:
1,Principle of easiest penetration
2,The kinds of computer security breaches
3,What is firewall
4,了解 英文摘要的写作技巧
Chapter 11 Database Management
计算机专业英语 11-4
New Words & Expressions:
facilitate 使容易,促进 retrieval n.检索
field n,字段,record 记录,
alphabetically 按字母顺序地 chronologically按年代顺序排
break down v,分解 build up 建造,装配,组成
encyclopedia n,百科全书 reference n,涉及,参考,引用
bibliography 书目,参考书目 periodical n,期刊,杂志
literature n,文献,著作 professional n,专业人员,专家
11.1 Overview
Abbreviations:
Chapter 11 Database Management
计算机专业英语 11-5
A database consists of a file or a set of files,The information in these files
may be broken down into records,each of which consists of one or more
fields,Fields are the basic units of data storage,and each field typically
contains information pertaining to one aspect or attribute of the entity
described by the database,Using keywords and various sorting commands,
users can rapidly search,rearrange,group,and select the fields in many
records to retrieve or create reports on particular aggregates of data.
一个数据库由一个文件或文件集合组成 。 这些文件中的信息可分解成一个个记录,每个记录有一个或多个域 。 域是数据存储的基本单位,每个域一般含有由数据库描述的属于实体的一个方面或一个特性的信息 。 用户使用键盘和各种排序命令,能够快速查找,重排,分组并在查找的许多记录中选择相应的域,建立特定集上的报表 。
11.1 Overview
Chapter 11 Database Management
计算机专业英语 11-6
11.1 Overview
Database records and files must be organized to allow retrieval of the
information,Early systems were arranged sequentially (i.e.,alphabetically,
numerically,or chronologically); the development of direct-access storage
devices made possible random access to data via indexes,Queries are the
main way users retrieve database information,Typically,the user provides
a string of characters,and the computer searches the database for a
corresponding sequence and provides the source materials in which those
characters appear,A user can request,for example,all records in which the
content of the field for a person’s last name is the word Smith.
数据库记录和文件的组织必须确保能对信息进行检索 。 早期的系统是顺序组织的 ( 如:字母顺序,数字顺序或时间顺序 ) ;直接访问存储设备的研制成功使得通过索引随机访问数据成为可能 。 用户检索数据库信息的主要方法是 query(查询 )。 通常情况下,用户提供一个字符串,计算机在数据库中寻找相应的字符序列,并且给出字符串在何处出现 。 比如,用户能够在所有记录中寻找所有 last name域为 Smith的记录 。
Chapter 11 Database Management
计算机专业英语 11-7
In flat databases [2],records are organized according to a simple list of
entities; many simple databases for personal computers are flat in
structure,The records in hierarchical databases are organized in a
treelike structure,with each level of records branching off into a set of
smaller categories,Unlike hierarchical databases,which provide single
links between sets of records at different levels,network databases create
multiple linkages between sets by placing links,or pointers,to one set of
records in another; the speed and versatility of network databases have
led to their wide use in business.
在非结构化的数据库中,按照实体的一个简单列表组织记录;很多个人计算机的简易数据库是非结构的 。 层次型数据库按树型组织记录,每一层的记录分解成更小的属性集 。 层次型数据库在不同层的记录集之间提供一个单一链接,与此不同,网络型数据库在不同记录集之间提供多个链接,这是通过设置指向其它记录集的链或指针来实现的 。 网络型数据库的速度及多样性使其在企业中得到广泛应用 。
11.1 Overview
Chapter 11 Database Management
计算机专业英语 11-8
Relational databases are used where associations among files or
records cannot be expressed by links; a simple flat list becomes one
table,or,relation”,and multiple relations can be mathematically
associated to yield desired information,Object-oriented databases
store and manipulate more complex data structures,called
“objects”,which are organized into hierarchical classes that may
inherit properties from classes higher in the chain; this database
structure is the most flexible and adaptable.
当文件或记录间的关系不能用链表达时,使用关系型数据库 。 一个表或一个,关系,,就是一个简单的非结构列表 。 多个关系可通过数学关系提供所需信息 。 面向对象的数据库存储并处理更复杂的称为对象的数据结构,可组织成有层次的类,其中的每个类可以继承层次链中更高一级类的特性,这种数据库结构最灵活,
最具适应性 。
11.1 Overview
Chapter 11 Database Management
计算机专业英语 11-9
New Words & Expressions:
sequential 顺序的,连续的 integrate 综合,使成整体
access v.访问 retrieve v.找回,检索
employ v.使用 list structure n.链表结构
invoice n.发票 pointer n.指针
hierarchical structure 树结构 subordinate adj.从属的
network structure 网状结构 relational structure 关系结构
physical structure 物理结构
11.2 DBMS STRUCTURING TECHNIQUES
Abbreviations,
DBMS( Database Management System) 数据库管理信息系统
Chapter 11 Database Management
计算机专业英语 11-10
11.2 DBMS STRUCTURING TECHNIQUES
DBMS is able to access and retrieve data from nonkey record fields,That is,
the DBMS is able to structure and tie together the logically related data from
several large files.
DBMS可综合几个文件的数据项以回答用户对信息的查询,这就意味着 DBMS
能够访问和检索非关键记录字段的数据,即 DBMS能够将几个大文件中逻辑相关的数据组织并连接在一起 。
Logical Structures,Identifying these logical relationships is a job of the data
administrator,A data definition language is used for this purpose,The DBMS
may then employ one of the following logical structuring techniques during
storage access,and retrieval operations [1]:
逻辑结构 。 确定这些逻辑关系是数据管理者的任务,由数据定义语言完成 。 DBMS在存储,访问和检索操作过程中可选用以下逻辑构造技术,
Chapter 11 Database Management
计算机专业英语 11-11
11.2 DBMS STRUCTURING TECHNIQUES
1,List structures,In this logical approach,records are linked together
by the use of pointers,A pointer is a data item in one record that
identifies the storage location of another logically related record,
Records in a customer master file,for example,will contain the name
and address of each customer,and each record in this file is identified
by an account number,During an accounting period,a customer may
buy a number of items on different days,Thus,the company may
maintain an invoice file to reflect these transactions,
链表结构 。 在该逻辑方式中,记录通过指针链接在一起 。 指针是记录中的一个数据项,它指出另一个逻辑相关的记录的存储位置,例如,顾客主文件中的记录将包含每个顾客的姓名和地址,而且该文件中的每个记录都由一个账号标识 。 在记账期间,顾客可在不同时间购买许多东西,公司保存一个发票文件以反映这些交易 。
Chapter 11 Database Management
计算机专业英语 11-12
11.2 DBMS STRUCTURING TECHNIQUES
A list structure could be used in this situation to show the unpaid invoices at
any given time,Each record in the customer file would contain a field that
would point to the record location of the first invoice for that customer in the
invoice file (fig11-1),This invoice record,in turn,would be linked to later
invoices for the customer,The last invoice in the chain would be identified by
the use of a special character as a pointer,
这种情况下可使用链表结构,以显示给定时间内未支付的发票 。 顾客文件中的每个记录都包含这样一个字段,该字段指向发票文件 (图 11-1)中该顾客的第一个发票的记录位置,该发票记录又依次与该顾客的下一个发票记录相连,
此链接的最后一个发票记录由一个作为指针的特殊字符标识 。
Chapter 11 Database Management
计算机专业英语 11-13
PointerInvoice
number
Invoice
number
PointerInvoice
number
Invoice
number
Invoice
number
Invoice
number
Fig 11-1 List Structure
Chapter 11 Database Management
计算机专业英语 11-14
11.2 DBMS STRUCTURING TECHNIQUES
Hierarchical (tree) structures,In this logical approach,data units are
structured in multiple levels that graphically resemble an "upside down" tree
with the root at the top and the branches formed below,There's a superior-
subordinate relationship in a hierarchical (tree) structure,Below the single-
root data component are subordinate elements or nodes,each of which,in turn,
"own" one or more other elements (or none) [3],Each element or branch in this
structure below the root has only a single owner,Thus,as we see in fig11-2,a
customer owns an invoice,and the invoice has subordinate items,The branches
in a tree structure are not connected.
层次 (树型 )结构 。 该逻辑方式中,数据单元的多级结构类似一棵,倒立,的树,该树的树根在顶部,而树枝向下延伸 。 在层次 (树型 )结构中存在主 -从关系,唯一的根数据下是从属的元或节点,而每个从属的元或节点又依次,拥有,一个或多个其它元 (或者没有 ) 。 该结构中根下面的每个元或树枝都只有一个所有者,这样,正如我们在图 11-2中所看到的,一个 customer(顾客 )拥有一个 invoice(发票 ),而 invoice(发票 )又有从属项 。 在树型结构中,树枝不能相连 。
Chapter 11 Database Management
计算机专业英语 11-15
11.2 DBMS STRUCTURING TECHNIQUES
Network Structures,Unlike the tree approach,which does not permit the
connection of branches,the network structure permits the connection of the
nodes in a multidirectional manner (see fig11-3),Thus,each node may have
several owners and may,in turn,own any number of other data units,Data
management software permits the extraction of the needed information from
such a structure by beginning with any record in a file.
网状结构 。 网状结构不像树型结构那样不允许树枝相连,它允许节点间多个方向连接 (见图 12-4),这样,每个节点都可能有几个所有者,而它又可能拥有任意多个其它数据单元 。 数据管理软件允许从文件的任一记录开始提取该结构中的所需信息 。
Chapter 11 Database Management
计算机专业英语 11-16
11.3 Oracle的数据库管理功能
NewWords& Expressions
add-on adj,附加的 repository v.综合,使成整体
console n,控制台 optional adj.可选择的,随意的
monitor n,监控,监视 load n,负载,加载
tuning n,调谐,调整 tracking n,跟踪
bottleneck n,瓶颈 proactive adj.前摄的
eliminate v.排除,消除 upgrade v,使升级,提升
initiate v.开始,初始化 wizard n,向导,范例
mundane a,平凡 (世俗 )的 critical adj.临界的,关键性的
archivelog n.,档案日志 utility n,实用程序,效用
expire v 期满,到期 incremental adj,增加的
bundle v,捆绑,扎 facility n,设备,工具
Chapter 11 Database Management
计算机专业英语 11-17
11.3 Oracle的数据库管理功能
Oracle includes many features that make the database easier to manage.
We’ve divided the discussion in this section into three categories,Oracle
Enterprise Manager,add-on packs,backup and recovery.
Oracle Enterprise Manager
As part of every Database Server,Oracle provides the Oracle Enterprise
Manager (EM),a database management tool framework with a graphical
interface used to manage database users,instances,and features (such as
replication) that can provide additional information about the Oracle
environment.
Oracle包括许多使数据库易于管理的功能,分三部分讨论,Oracle企业管理者,附加包,备份和恢复 。
Oracle企业管理者
Oracle数据库服务器包括以下部分,Oracle企业管理者 (EM),一个带有图形接口的用于管理数据库用户,实例和提供 Oracle环境等附加信息功能
(如:复制 ) 的数据库管理工具框架 。
Chapter 11 Database Management
计算机专业英语 11-18
英文摘要 (Abstract)的写作应用很广 。 论文摘要是全文的精华,是对一项科学研究工作的总结,对研究目的,方法和研究结果的概括 。
一,摘要的种类与特点摘要主要有以下四种 。
第一种是随同论文一起在学术刊物上发表的摘要 。 这种摘要置于主体部分之前,目的是让读者首先了解一下论文的内容,以便决定是否阅读全文 。 一般来说,这种摘要在全文完成之后写 。 字数限制在 100~ 150字之间 。 内容包括研究目的,研究方法,研究结果和主要结论 。
第二种是学术会议论文摘要 。 会议论文摘要往往在会议召开之前几个月撰写,目的是交给会议论文评审委员会评阅,从而决定是否能够录用 。
所以,比第一种略为详细,长度在 200—300字之间 。 会议论文摘要的开头有必要简单介绍一下研究课题的意义,目的,宗旨等 。 如果在写摘要时,研究工作尚未完成,全部研究结果还未得到,那么,应在方法,目的,宗旨,假设等方面多花笔墨 。
英文摘要的写作技巧
Chapter 11 Database Management
计算机专业英语 11-19
英文摘要的写作技巧第三种为学位论文摘要 。 学士,硕士和博士论文摘要一般都要求用中,
英文两种语言写 。 学位论文摘要一般在 400字左右,根据需要可以分为几个段落 。 内容一般包括研究背景,意义,主旨和目的;基本理论依据,基本假设;研究方法;研究结果;主要创新点;简短讨论 。 不同级别的学位论文摘要,要突出不同程度的创新之处,指出有何新的观点,见解或解决问题的新方法 。
第四种是脱离原文而独立发表的摘要 。 这种摘要更应该具有独立性,
自含性,完整性 。 读者无需阅读全文,便可以了解全文的主要内容 。
Chapter 11 Database Management
计算机专业英语 11-20
英文摘要的写作技巧二,摘要的内容与结构摘要内容一般包括:
目的 (objectives,purposes):包括研究背景,范围,内容,要解决的问题及解决这一问题的重要性和意义 。
方法 (methods and materials):包括材料,手段和过程 。
结果与简短讨论 (results and discussions):包括数据与分析 。
结论 (conclusions):主要结论,研究的价值和意义等 。
概括地说,摘要必须回答,研究什么,,,怎么研究,,,得到了什么结果,,,结果说明了什么,等问题 。
无论哪种摘要,语言特点和文体风格也都相同 。 首先必须符合格式规范 。
第二,语言必须规范通顺,准确得体,用词要确切,恰如其分,而且要避免非通用的符号,缩略语,生偏词 。 另外,摘要的语气要客观,不要做出言过其实的结论 。
Chapter 11 Database Management
计算机专业英语 11-21
英文摘要的写作技巧三,学术期刊论文摘要
1,摘要的目的摘要是论文的梗概,提供论文的实质性内容的知识 。 摘要的目的在于:给读者关于文献内容的足够的信息,使读者决定是否要获得论文 。
2,摘要的要素
1) 目的 ——研究,研制,调查等的前提,目的和任务,所涉及的主题范围 。
2) 方法 ——所用的原理,理论,条件,对象,材料,工艺,结构,手段,
装备,程序等 。
3) 结果 ——实验的,研究的结果,数据,被确定的关系,观察结果,得到的效果,性能等 。
4) 结论 ——结果的分析,研究,比较,评价,应用,提出的问题等 。
3,摘要的篇幅摘要的篇幅取决于论文的类型 。 但无论哪一种论文,都不能超过 150 words。
Chapter 11 Database Management
计算机专业英语 11-22
英文摘要的写作技巧
4,摘要的英文写作风格 (公认的英文摘要写作规范 )
1) 句子完整,清晰,简洁 。
2) 用简单句 。 为避免单调,改变句子的长度和句子的结构 。
3) 用过去时态描述作者的工作,因它是过去所做的 。 但是,用现在时态描述所做的结论 。
4) 避免使用动词的名词形式 。 如:
正:,Thickness of plastic sheet was measured”
误:,measurement of thickness of plastic sheet was made”
5) 正确地使用冠词,既应避免多加冠词,也应避免蹩脚地省略冠词 。 如:
正:,Pressure is a function of the temperature”
误:,The pressure is a function of the temperature”;
Chapter 11 Database Management
计算机专业英语 11-23
英文摘要的写作技巧
4,摘要的英文写作风格
6) 使用长的,连串的形容词,名词,或形容词加名词来修饰名词 。 为打破这种状态,可使用介词短语,或用连字符连接名词词组中的名词,形成修饰单元 。 例如:
应写为,The chlorine-containing propylene-based polymer of high
melt index”,
而不写为,The chlorine containing high melt index-propylene based
polymer”
7) 使用短的,简单的,具体的,熟悉的词 。 不使用华丽的词藻 。
8) 使用主动语态而不使用被动语态 。,A exceeds B”读起来要好于,B
is exceeded by A”。 使用主动语态还有助于避免过多地使用类似于,is”,
“was”,“are”和,were”这样的弱动词 。
Chapter 11 Database Management
计算机专业英语 11-24
英文摘要的写作技巧
4,摘要的英文写作风格
9) 构成句子时,动词应靠近主语 。 避免形如以下的句子:
,The decolorization in solutions of the pigment in dioxane,which
were exposed to 10 hr of UV irradiation,was no longer
irreversible.”
改进的句子,应当是:
,When the pigment was dissolved in dioxane,decolorization was
irreversible,after 10 hr of UV irradiation.”
10) 避免使用那些既不说明问题,又没有任何含意的短语 。 例如:
,specially designed or formulated”,,The author discusses”,
,The author studied” 应删去 。
不使用俚语,非英语的句子,慎用行话和口语,不使用电报体 。