数据库 外文翻译 外文文献 英文文献 数据库管理系统的介绍_第1页
数据库 外文翻译 外文文献 英文文献 数据库管理系统的介绍_第2页
数据库 外文翻译 外文文献 英文文献 数据库管理系统的介绍_第3页
数据库 外文翻译 外文文献 英文文献 数据库管理系统的介绍_第4页
免费预览已结束,剩余1页可下载查看

下载本文档

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

文档简介

1、a introduction to database management system raghu ramakrishnana database sometimes spelled data base is also called an electronic database referring to any collection of data or information that is specially organized for rapidsearch and retrieval by a computer. databases are structured to facilita

2、te the storageretrieval modification and deletion of data in conjunction with various data-processingoperations .databases can be stored on magnetic disk or tape optical disk or some othersecondary storage device.a database consists of a file or a set of files. the information in these files may be

3、brokendown into records each of which consists of one or more fields. fields are the basic unitsof data storage and each field typically contains information pertaining to one aspector attribute of the entity described by the database . using keywords and various sortingcommands users can rapidly se

4、arch rearrange group and select the fields in manyrecords to retrieve or create reports on particular aggregate of data.complex data relationships and linkages may be found in all but the simplestdatabases .the system software package that handles the difficult tasks associated withcreating accessin

5、g and maintaining database records is called a database managementsystemdbms.the programs in a dbms package establish an interface between thedatabase itself and the users of the database. these users may be applicationsprogrammers managers and others with information needs and various os programs.a

6、 dbms can organize process and present selected data elements form the database.this capability enables decision makers to search probe and query database contents inorder to extract answers to nonrecurring and unplanned questions that arent availablein regular reports. these questions might initial

7、ly be vague and/or poorly defined butpeople can “browse” through the database until they have the needed information. inshort the dbms will “manage” the stored data items and assemble the needed itemsfrom the common database in response to the queries of those who arentprogrammers.a database managem

8、ent system dbms is composed of three major parts:1a storagesubsystem that stores and retrieves data in files2 a modeling and manipulationsubsystem that provides the means with which to organize the data and to add deletemaintain and update the data3and an interface between the dbms and its users.sev

9、eral major trends are emerging that enhance the value and usefulness of databasemanagement systemsmanagers: who require more up-to-data information to make effective decisioncustomers: who demand increasingly sophisticated information services and morecurrent information about the status of their or

10、ders invoices and accounts.users: who find that they can develop custom applications with database systems in afraction of the time it takes to use traditional programming languages.organizations : that discover information has a strategic value they utilize their databasesystems to gain an edge ove

11、r their competitors.the database modela data model describes a way to structure and manipulate the data in a database. thestructural part of the model specifies how data should be representedsuch as tree tablesand so on .the manipulative part of the model specifies the operation with which to adddel

12、ete display maintain print search select sort and update the data.hierarchical modelthe first database management systems used a hierarchical model-that is-they arrangedrecords into a tree structure. some records are root records and all others have uniqueparent records. the structure of the tree is

13、 designed to reflect the order in which the datawill be used that is the record at the root of a tree will be accessed first then records onelevel below the root and so on.the hierarchical model was developed because hierarchical relationships are commonlyfound in business applications. as you have

14、known an organization char often describesa hierarchical relationship: top management is at the highest level middle managementat lower levels and operational employees at the lowest levels. note that within a stricthierarchy each level of management may have many employees or levels of employeesben

15、eath it but each employee has only one manager. hierarchical data are characterizedby this one-to-many relationship among data.in the hierarchical approach each relationship must be explicitly defined when thedatabase is created. each record in a hierarchical database can contain only one key fielda

16、nd only one relationship is allowed between any two fields. this can create a problembecause data do not always conform to such a strict hierarchy.relational modela major breakthrough in database research occurred in 1970 when e. f. codd proposeda fundamentally different approach to database managem

17、ent called relationalmodel which uses a table as its data structure.the relational database is the most widely used database structure. data is organized intorelated tables. each table is made up of rows called and columns called fields. eachrecord contains fields of data about some specific item. f

18、or example in a table containinginformation on employees a record would contain fields of data such as a persons lastname first name and street address.structured query languagesqlis a query language for manipulating data in a relationaldatabase .it is nonprocedural or declarative in which the user

19、need only specify anenglish-like description that specifies the operation and the described record orcombination of records. a query optimizer translates the description into a procedure toperform the database manipulation.network modelthe network model creates relationships among data through a lin

20、ked-list structure inwhich subordinate records can be linked to more than one parent record. this approachcombines records with links which are called pointers. the pointers are addresses thatindicate the location of a record. with the network approach a subordinate record can belinked to a key reco

21、rd and at the same time itself be a key record linked to other sets ofsubordinate records. the network mode historically has had a performance advantageover other database models. today such performance characteristics are only importantin high-volume high-speed transaction processing such as automa

22、tic teller machinenetworks or airline reservation system.both hierarchical and network databases are application specific. if a new application isdeveloped maintaining the consistency of databases in different applications can bevery difficult. for example suppose a new pension application is develo

23、ped .the data arethe same but a new database must be created.object modelthe newest approach to database management uses an object model in which recordsare represented by entities called objects that can both store data and provide methods orprocedures to perform specific tasks.the query language u

24、sed for the object model is the same object-oriented programminglanguage used to develop the database application .this can create problems becausethere is no simple uniform query language such as sql . the object model is relativelynew and only a few examples of object-oriented database exist. it h

25、as attracted attentionbecause developers who choose an object-oriented programming language want adatabase based on an object-oriented model.distributed databasesimilarly a distributed database is one in which different parts of the database reside onphysically separated computers . one goal of dist

26、ributed databases is the access ofinformation without regard to where the data might be stored. keeping in mind that oncethe users and their data are separated the communication and networking conceptscome into play .distributed databases require software that resides partially in the larger compute

27、r. thissoftware bridges the gap between personal and large computers and resolves theproblems of incompatible data formats. ideally it would make the mainframe databasesappear to be large libraries of information with most of the processing accomplished onthe personal computer.a drawback to some dis

28、tributed systems is that they are often based on what is called amainframe-entire model in which the larger host computer is seen as the master and theterminal or personal computer is seen as a slave. there are some advantages to thisapproach . with databases under centralized control many of the pr

29、oblems of dataintegrity that we mentioned earlier are solved . but todays personal computersdepartmental computers and distributed processing require computers and theirapplications to communicate with each other on a more equal or peer-to-peer basis. in adatabase the client/server model provides th

30、e framework for distributing databases.one way to take advantage of many connected computers running databaseapplications is to distribute the application into cooperating parts that are independent ofone anther. a client is an end user or computer program that requests resources across anetwork. a

31、server is a computer running software that fulfills those requests across anetwork . when the resources are data in a database the client/server model provides theframework for distributing database.a file serve is software that provides access to files across a network. a dedicated fileserver is a

32、single computer dedicated to being a file server. this is useful for example ifthe files are large and require fast access .in such cases a minicomputer or mainframewould be used as a file server. a distributed file server spreads the files around onindividual computers instead of placing them on on

33、e dedicated computer.advantages of the latter server include the ability to store and retrieve files on othercomputers and the elimination of duplicate files on each computer. a majordisadvantage however is that individual read/write requests are being moved acrossthe network and problems can arise

34、when updating files. suppose a user requests arecord from a file and changes it while another user requests the same record andchanges it too. the solution to this problems called record locking which means that thefirst request makes others requests wait until the first request is satisfied . other

35、 usersmay be able to read the record but they will not be able to change it .a database server is software that services requests to a database across a network. forexample suppose a user types in a query for data on his or her personal computer . if theapplication is designed with the client/server

36、 model in mind the query language part onthe personal computer simple sends the query across the network to the database serverand requests to be notified when the data are found.examples of distributed database systems can be found in the engineering world. sunsnetwork filing systemnfsfor example i

37、s used in computer-aided engineeringapplications to distribute data among the hard disks in a network of sun workstation.distributing databases is an evolutionary step because it is logical that data should existat the location where they are being used . departmental computers within a largecorpora

38、tion for example should have data reside locally yet those data should beaccessible by authorized corporate management when they want to consolidatedepartmental data . dbms software will protect the security and integrity of the database and the distributed database will appear to its users as no di

39、fferent from thenon-distributed database . 数据库管理系统的介绍 raghu ramakrishnan 数据库(database有时拼作 data base)又称为电子数据库,是专门组织起来的一组数据或信息,其目的是为了便于计算机快速查询及检索。数据库的结构是专门设计的,在各种数据处理操作命令的支持下,可以简化数据的存储,检索,修改和删除。数据库可以存储在磁盘,磁带,光盘或其他辅助存储设备上。 数据库由一个或一套文件组成, 其中的信息可以分解为记录,每一记录又包含一个或多个字段(或称为域)。字段是数据存取的基本单位。数据库用于描述实体,其中的一个字段通

40、常表示与实体的某一属性相关的信息。通过关键字以及各种分类(排序)命令,用户可以对多条记录的字段进行查询,重新整理,分组或选择,以实体对某一类数据的检索,也可以生成报表。 所有数据库(最简单的除外)中都有复杂的数据关系及其链接。处理与创建,访问以及维护数据库记录有关的复杂任务的系统软件包叫做数据库管理系统(dbms) 。dbms 软件包中的程序在数据库与其用户间建立接口。 (这些用户可以是应用程序员,管理员及其他需要信息的人员和各种操作系统程序)。 dbms 可组织,处理和表示从数据库中选出的数据元。该功能使决策者能搜索,探查和查询数据库的内容,从而对在正规报告中没有的, 不再出现的且无法预料的

41、问题做出回答。这些问题最初可能是模糊的并且(或者)是定义不恰当的,但是人们可以浏览数据库直到获得所需的信息。简言之,dbms 将“管理”存储的数据项,并从公共数据库中汇集所需的数据项以回答非程序员的询问。 dbms 由 3 个主要部分组成: (1)存储子系统,用来存储和检索文件中的数据; (2)建模和操作子系统,提供组织数据以及添加,删除,维护,更新数据的方法; (3)用户和dbms 之间的接口。在提高数据库管理系统的价值和有效性方面正在展现以下一些重要发展趋势; 1.管理人员需要最新的信息以做出有效的决策。 2.客户需要越来越复杂的信息服务以及更多的有关其订单,发票和账号的当前信息。 3.用户发现他们可以使用传统的程序设计语言, 在很短的一段时间内用数据库系统开发客户应用程序。 4.商业公司发现了信息的战略价值,他们利用数据库系统领先于竞争对手。数据库中数据的性质 1.数据整体性:数据库是一个单位或是一个应用领域的通用数据处理系统,他存储的是属于企业和事业部门、团体和个人的有关数据的集合。数据库中的数据是从全局观点出发建立的,他按一定的数据模型进行组织、描述和存储。其结构基于数据间的自然联系,从而可提供一切必要的存取路径,且数据不再针对某一应用,而

温馨提示

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

评论

0/150

提交评论