计算机专业外文翻译+原文-数据库管理系统介绍_第1页
计算机专业外文翻译+原文-数据库管理系统介绍_第2页
计算机专业外文翻译+原文-数据库管理系统介绍_第3页
计算机专业外文翻译+原文-数据库管理系统介绍_第4页
计算机专业外文翻译+原文-数据库管理系统介绍_第5页
已阅读5页,还剩58页未读 继续免费阅读

下载本文档

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

文档简介

1、计算机专业外文翻译 + 原文 - 数 据库管理系统介绍扬州大学计算机专业毕业设计(外文翻译)外文资料database management systemsa database (sometimes spelled data base) is also called an electronic database , referring to any collection of data, or information, that is specially organized for rapid search and retrieval by a computer. databases are s

2、tructured to facilitate the storage, retrieval , modification, and deletion of data in conjunction with various data-processing operations .databases can be stored on magnetic disk or tape, optical disk, or some other secondary storage device.a database consists of a file or a set of files. the info

3、rmation 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

4、sorting commands, users can rapidly1扬州大学计算机专业毕业设计(外文翻译)search , rearrange, group, and select the fields in many records to retrieve or create reports on particular aggregate of data.complex data relationships and linkages may be found in all but the simplest databases .the system software package th

5、at handles the difficult tasks associated with creating ,accessing, and maintaining database records is called a database management system(dbms).the programs in a dbms package establish an interface between the database itself and the users of the database. (these users may be applications programm

6、ers, managers and others with information needs, and various os programs.)a dbms can organize, process, and present selected data elements form the database. this capability enables decision makers to search, probe, and query database contents in order to extract answers to nonrecurring and unplanne

7、d questions that arent available in regular reports. these questions might initially be vague and/or poorly2扬州大学计算机专业毕业设计(外文翻译)defined ,but people can “browse” through the database until they have the needed information. in short, the dbms will “manage” the stored data items and assemble the needed

8、items from the common database in response to the queries of those who arent programmers.a database management system (dbms) is composed of three major parts:(1)a storage subsystem that stores and retrieves data in files;(2) a modeling and manipulation subsystem that provides the means with which to

9、 organize the data and to add , delete, maintain, and update the data;(3)and an interface between the dbms and its users. several major trends are emerging that enhance the value and usefulness of database management systems;managers: who require more up-to-data information to make effective decisio

10、n customers: who demand increasingly sophisticated information services and more current information about the status of their3扬州大学计算机专业毕业设计(外文翻译)orders, invoices, and accounts.users: who find that they can develop custom applications with database systems in a fraction of the time it takes to use t

11、raditional programming languages.organizations : that discover information has a strategic value; they utilize their database systems to gain an edge over their competitors.the database modela data model describes a way to structure and manipulate the data in a database. the structural part of the m

12、odel specifies how data should be represented(such as tree, tables, and so on ).the manipulative part of the model specifies the operation with which to add, delete, display, maintain, print, search, select, sort and update the data.hierarchical modelthe first database management systems used a hier

13、archical model-that is-they arranged records into a tree structure. some records are root records4扬州大学计算机专业毕业设计(外文翻译)and all others have unique parent records. the structure of the tree is designed to reflect the order in which the data will be used that is ,the record at the root of a tree will be

14、accessed first, then records one level below the root ,and so on.the hierarchical model was developed because hierarchical relationships are commonly found in business applications. as you have known, an organization char often describes a hierarchical relationship: top management is at the highest

15、level, middle management at lower levels, and operational employees at the lowest levels. note that within a strict hierarchy, each level of management may have many employees or levels of employees beneath it, but each employee has only one manager. hierarchical data are characterized by this one-t

16、o-many relationship among data.in the hierarchical approach, each relationship must be explicitly defined when the database is created. each record in a hierarchical database can contain only one key field and only5扬州大学计算机专业毕业设计(外文翻译)one relationship is allowed between any two fields. this can creat

17、e a problem because data do not always conform to such a strict hierarchy. relational modela major breakthrough in database research occurred in 1970 when e. f. codd proposed a fundamentally different approach to database management called relational model ,which uses a table as its data structure.t

18、he relational database is the most widely used database structure. data is organized into related tables. each table is made up of rows called and columns called fields. each record contains fields of data about some specific item. for example, in a table containing information on employees, a recor

19、d would contain fields of data such as a person s last name ,first name ,and street address.structured query language(sql)is a query language for manipulating data in a relational database .it is nonprocedural or declarative, in6扬州大学计算机专业毕业设计(外文翻译)which the user need only specify an english-like des

20、cription that specifies the operation and the described record or combination of records. a query optimizer translates the description into a procedure to perform the database manipulation. network modelthe network model creates relationships among data through a linked-list structure in which subor

21、dinate records can be linked to more than one parent record. this approach combines records with links, which are called pointers. the pointers are addresses that indicate the location of a record. with the network approach, a subordinate record can be linked to a key record and at the same time its

22、elf be a key record linked to other sets of subordinate records. the network mode historically has had a performance advantage over other database models. today , such performance characteristics are only important in high-volume ,high-speed transaction processing such as automatic teller machine7扬州

23、大学计算机专业毕业设计(外文翻译)networks or airline reservation system.both hierarchical and network databases are application specific. if a new application is developed ,maintaining the consistency of databases in different applications can be very difficult. for example, suppose a new pension application is dev

24、eloped .the data are the same, but a new database must be created.object modelthe newest approach to database management uses an object model , in which records are represented by entities called objects that can both store data and provide methods or procedures to perform specific tasks.the query l

25、anguage used for the object model is the same object-oriented programming language used to develop the database application .this can create problems because there is no simple , uniform query language such as sql . the object model is relatively new, and only a few examples of object-oriented datab

26、ase exist. it has attracted8扬州大学计算机专业毕业设计(外文翻译)attention because developers who choose an object-oriented programming language want a database based on an object-oriented model. distributed databasesimilarly , a distributed database is one in which different parts of the database reside on physicall

27、y separated computers . one goal of distributed databases is the access of information without regard to where the data might be stored. keeping in mind that once the users and their data are separated , the communication and networking concepts come into play .distributed databases require software

28、 that resides partially in the larger computer. this software bridges the gap between personal and large computers and resolves the problems of incompatible data formats. ideally, it would make the mainframe databases appear to be large libraries of information, with most of the processing accomplis

29、hed on the personal computer.a drawback to some distributed systems is9扬州大学计算机专业毕业设计(外文翻译)that they are often based on what is called a mainframe-entire model , in which the larger host computer is seen as the master and the terminal or personal computer is seen as a slave. there are some advantages

30、 to this approach . with databases under centralized control , many of the problems of data integrity that we mentioned earlier are solved . but todays personal computers,departmentalcomputers,and distributedprocessingrequirecomputersand theirapplications to communicate with each other on a more equ

31、al or peer-to-peer basis. in a database, the client/server model provides the framework for distributing databases.one way to take advantage of many connected computers running database applications is to distribute the application into cooperating parts that are independent of one anther. a client

32、is an end user or computer program that requests resources across a network. a server is a computer running software that10扬州大学计算机专业毕业设计(外文翻译)fulfills those requests across a network . when the resources are data in a database ,the client/server model provides the framework for distributing database

33、.a file serve is software that provides access to files across a network. a dedicated file server is a single computer dedicated to being a file server. this is useful ,for example ,if the files are large and require fast access .in such cases, a minicomputer or mainframe would be used as a file ser

34、ver. a distributed file server spreads the files around on individual computers instead of placing them on one dedicated computer.advantages of the latter server include the ability to store and retrieve files on other computers and the elimination of duplicate files on each computer. a major disadv

35、antage , however, is that individual read/write requests are being moved across the network and problems can arise when updating files. suppose a user requests a record from a file and changes it while another11扬州大学计算机专业毕业设计(外文翻译)user requests the same record and changes it too. the solution to this

36、 problems called record locking, which means that the first request makes others requests wait until the first request is satisfied . other users may 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 networ

37、k. for example, suppose a user types in a query for data on his or her personal computer . if the application is designed with the client/server model in mind ,the query language part on the personal computer simple sends the query across the network to the database server and requests to be notifie

38、d when the data are found.examples of distributed database systems can be found in the engineering world. suns network filing system(nfs),for example, is used in computer-aided engineering applications to distribute data among the hard disks in a network of sun workstation.12扬州大学计算机专业毕业设计(外文翻译)distr

39、ibuting databases is an evolutionary step because it is logical that data should exist at the location where they are being used . departmental computers within a large corporation ,for example, should have data reside locally , yet those data should be accessible by authorized corporate management

40、when they want to consolidate departmental data . dbms software will protect the security and integrity of the database , and the distributed database will appear to its users as no different from the non-distributed database .in this information age, the data server has become the heart of a compan

41、y. this one piece of software controls the rhythm of most organizations and is used to pump information lifeblood through the arteries of the network. because of the critical nature of this application, the data server is also the one of the most popular targets for hackers. if a hacker owns this ap

42、plication, he can cause the companys heart to suffer a fatal arrest.ironically, although most users are now13扬州大学计算机专业毕业设计(外文翻译)aware of hackers, they still do not realize how susceptible their database servers are to hack attacks. thus, this article presents a description of the primary methods of

43、attacking database servers (also known as sql servers) and shows you how to protect yourself from these attacks.you should note this information is not new. many technical white papers go into great detail about how to perform sql attacks, and numerous vulnerabilities have been posted to security li

44、sts that describe exactly how certain database applications can be exploited. this article was written for the curious non-sql experts who do not care to know the details, and as a review to those who do use sql regularly.what is a sql server?a database application is a program that provides clients

45、 with access to data. there are many variations of this type of application, ranging from the expensive enterprise-level microsoft sql server to the free and open source mysql.14扬州大学计算机专业毕业设计(外文翻译)regardless of the flavor, most database server applications have several things in common.first, databa

46、se applications use the same general programming language known as sql, or structured query language. this language, also known as a fourth-level language due to its simplistic syntax, is at the core of how a client communicates its requests to the server. using sql in its simplest form, a programme

47、r can select, add, update, and delete information in a database. however, sql can also be used to create and design entire databases, perform various functions on the returned information, and even execute other programs.to illustrate how sql can be used, the following is an example of a simple stan

48、dard sql query and a more powerful sql query:simple: select * fromdbfurniture.tblchairthis returns all information in the table tblchair from the database dbfurniture.15扬州大学计算机专业毕业设计(外文翻译)complex: exec master.xp_cmdshell dirc:this short sql command returns to the client the list of files and folders

49、 under the c: directory of the sql server. note that this example uses an extended stored procedure that is exclusive to ms sql server.the second function that database server applications share is that they all require some form of authenticated connection between client and host. although the sql

50、language is fairly easy to use, at least in its basic form, any client that wants to perform queries must first provide some form of credentials that will authorize the client; the client also must define the format of the request and response.this connection is defined by several attributes, depend

51、ing on the relative location of the client and what operating systems are in use. we could spend a whole article discussing various technologies such as dsn connections, dsn-less16扬州大学计算机专业毕业设计(外文翻译)connections, rdo, ado, and more, but these subjects are outside the scope of this article. if you wan

52、t to learn more about them, a little googleing will provide you with more than enough information. however, the following is a list of the more common items included in a connection request.database sourcerequest typedatabaseuser idpasswordbefore any connection can be made, the client must define wh

53、at type of database server it is connecting to. this is handled by a software component that provides the client with the instructions needed to create the request in the correct format. in addition to the type of database, the request type can be used to further define how the clients request will

54、be handled by the server. next comes the database name and finally the17扬州大学计算机专业毕业设计(外文翻译)authentication information.all the connection information is important, but by far the weakest link is the authentication informationor lack thereof. in a properly managed server, each database has its own use

55、rs with specifically designated permissions that control what type of activity they can perform. for example, a user account would be set up as read only for applications that need to only access information. another account should be used for inserts or updates, and maybe even a third account would

56、 be used for deletes. this type of account control ensures that any compromised account is limited in functionality. unfortunately, many database programs are set up with null or easy passwords, which leads to successful hack attacks.18扬州大学计算机专业毕业设计(外文翻译)译文数据库管理系统介绍数据库(database,有时拼作 data base)又称 为电子

57、数据库,是专门组织起来的一组数据或信 息,其目的是为了便于计算机快速查询及检索。数 据库的结构是专门设计的,在各种数据处理操作命 令的支持下,可以简化数据的存储,检索,修改和 删除。数据库可以存储在磁盘,磁带,光盘或其他 辅助存储设备上。数据库由一个或一套文件组成,其中的信息 可以分解为记录,每一记录又包含一个或多个字段 (或称为域)。字段是数据存取的基本单位。数据 库用于描述实体,其中的一个字段通常表示与实体 的某一属性相关的信息。通过关键字以及各种分类 (排序)命令,用户可以对多条记录的字段进行查 询,重新整理,分组或选择,以实体对某一类数据 的检索,也可以生成报表。所有数据库(最简单的除外)中都有复杂的 数据关系及其链接。处理与创建,访问以及维护数 据库记录有关的复杂任务的系统软件包叫做数据19扬州大学计算机专业毕业设计(外文翻译)库管理系统( dbms)。dbms 软件包中的程序在 数据库与其用户间建立接口。(这些用户可以是应 用程序员,管理员及其他需要信息的人员和各种操 作系统程序)。dbms 可组

温馨提示

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

评论

0/150

提交评论