计算机英语A--Better-Way-to-Manage-and-Organize-DataPPT课件

上传人:世*** 文档编号:152441949 上传时间:2020-11-23 格式:PPT 页数:14 大小:290KB
返回 下载 相关 举报
计算机英语A--Better-Way-to-Manage-and-Organize-DataPPT课件_第1页
第1页 / 共14页
计算机英语A--Better-Way-to-Manage-and-Organize-DataPPT课件_第2页
第2页 / 共14页
计算机英语A--Better-Way-to-Manage-and-Organize-DataPPT课件_第3页
第3页 / 共14页
计算机英语A--Better-Way-to-Manage-and-Organize-DataPPT课件_第4页
第4页 / 共14页
计算机英语A--Better-Way-to-Manage-and-Organize-DataPPT课件_第5页
第5页 / 共14页
点击查看更多>>
资源描述

《计算机英语A--Better-Way-to-Manage-and-Organize-DataPPT课件》由会员分享,可在线阅读,更多相关《计算机英语A--Better-Way-to-Manage-and-Organize-DataPPT课件(14页珍藏版)》请在金锄头文库上搜索。

1、A Better Way to Manage and Organize Data,一个更好的方法来管理和组织数据,为了管理这些信息资源并提供及时、有效的访问,许多公司都采用了数据库,In an attempt to organize their information resources and provide for timely and efficient access, many companies have implemented databases. 试图,企图,试图做某事 资源 有效率的 v. 实施(implement的过去分词形式);执行 adj. 应用的,What is a D

2、atabase? 什么是数据库,In a database, the data is organized in multiple related files. Because these files are related, user can access data in multiple files at one time. A database management system (DBMS) is the software that allows the user to create, maintain, and report the data and file relationship

3、s. By contrast, a file management system is software that allows the user to create, maintain, and access one file at a time. 多样的,多重的 有关系的,有关联的 对比,比较 维护,维持 在数据库中,数据被组织在多个相关文件。因为这些文件是相关的,用户可以多个文件夹中同时访问数据。一个数据库管理系统(数据库管理系统)就是允许用户创建,维护,和报告的数据和文件的关系的软件。相比之下,而一个文件管理系统则是允许用户创建,维护,并且在同一时间访问一个文件。,Why use a

4、Database为什么使用数据库,There are problems with traditional data management. Many result from viewing applications independently. Each program is independent, and each processes its own independent data file. For one thing, different applications often need the same data elements. Redundant data are diffic

5、ult to maintain. 查看,观看 独立的单独的 在这里是 处理的意思,也是进程的意思 多余,过剩的 传统的数据库管理存在一些问题,许多问题是由于单独地观察应用引起的。每个程序都是独立的,并且每个程序都只处理自己独立的数据文件。在一个事件中,不同的应用程序常常需要同样的数据。重复的数据是很难维护的。,A more subtle problem is data dependency. Each access method has its own rules for storing and retrieving data, and certain “tricks of the trade

6、” can significantly improve the efficiency of a given program. Because the motivation for using the computer is saving money, the programmer is often tempted to save even more by taking advantage of these efficiencies. Thus, the programs logic becomes dependent upon the physical structure of the dat

7、a, when a programs logic is tied to its physical data structure, changing that structure will almost certainly require changing the program. As a result, programs using traditional access methods can be difficult to maintain. 细微的,在这是复杂的。附属 方法 存储,保管 技巧 意味深长的 效率 ,功能 动机,积极性 利用,诱惑 逻辑 物理结构 束缚 几乎,肯定 这里是肯定

8、的意思 更为复杂的问题是数据的依赖性。为了存放和检索数据,每种存取方法都有自己的规则,某些数据管理技巧能够极大地改善一个给定程序的效率。因为使用计算机的动机是为了节省钱,所以程序员总是想利用这些效率来节省更多的钱。因此,程序的逻辑结构变得依赖于数据的物理结构。当程序的逻辑结构受到它的物理结构约束的时候,改变了数据结构,肯定要改变程序,因此,使用传统存取方法的程序很难维护,The solution to both problems is often organizing the data as a single, integrated database. The task of controll

9、ing access to all the data can then be concentrated in a centralized database management system. 单一的 单独的 控制,组成 词组,控制访问 集中,集中的 解决以上两个问题的方法通常是把数据组成一体化的数据库,这样就能把控制访问所有数据的任务集中在一个中心的数据库管理系统中。,How does the use of a centralized database solve the data redundancy problem? All data are collected and stored i

10、n a single place; consequently, there is one and only one copy of any given data element. When the value of an element (an address, for example) changes, the single database copy is corrected. Any program requiring access to this data element gets the same value, because there is only one value. 被收集

11、 被存储 因此 复制 拷贝 价值,这里时值的意思 命令,要求 如何使用一个集中的数据库解决数据冗余问题?所有数据都在一个地方收集和储存,因此,有一个且只有一个任何给定的数据元素的副本。当一个元素的值(例如一个地址)的变化时,单一的数据库的副本被纠正。任何程序需要访问这个数据元素得到相同的值,因为只有一个值。,How does a database help to solve the data dependency problem? Since the responsibility for accessing the physical data rests with the database m

12、anagement system, the programmer can ignore the physical data structure .As a result, programs tend to be much less dependent upon their data, and are generally much easier to maintain. 附属,依赖 责任,义务 在于,取决于 忽视,不考虑 同dependency 维护 数据库又如何帮助解决数据依赖性问题呢?由于存取实际数据的责任由数据库系统承担,因此程序员就可以不考虑实际的数据结构,从而使程序更少地依赖于它的数据

13、,一般来说也可以更容易维护了。,A database system can offer a number of advantages over the traditional data management (a file-oriented system). These advantages and several others are summarized as follows: 提出,面向 几个,数个 总结,概述 和传统的数据管理(面向单个文件的系统)相比,数据库系统有多个优点。下面简要介绍一下这些优点。,(1) Reduced data redundancy Redundant, or

14、duplicate, data is greatly reduced in a database system. Frequently used data elements such as names, addresses, and descriptions are stored in one location. Having such items in one instead of many locations lowers the cost of maintaining the data. 多余的,过剩的 复制的,重复的 频繁的 数据元素 说明,描述 位置,地点 减少数据冗余 多余的,或者

15、说一式两份,大大降低了数据在数据库系统。被频繁使用的数据元素,例如姓名、地址和描述是储存在一个地点。有这样的项目在许多位置而不是降低了成本维护数据,(2) Improved data integrity Closely related to reduced data redundancy is the database advantage of improved data integrity. Because data is only stored in one place, it is more likely to be accurate. When it is updated, all a

16、pplications that use the data will be using the most current version. 紧密相关 数据完整性 精确的 更新 当前版本 提高了数据的完整性 少数据冗余度密切相关,是数据库利用改进的数据完整性。因为数据仅仅是贮存在一个地方,它更有可能是准确的。当它更新,所有应用可以使用这个数据将使用最新的版本。,(3) Integrated files A key advantage of a database management system is its capability to integrate, or join together, data from more than one file for inquiry or reporting purposes. 能力 一体化,完整的 探究,查询 目的,打算 集成文件 数据库管裤系统的一个主要优点是为了进行查询或汇总,可把来自多个文件的数据集成(或称结合)到一起。,(4) Improved data security Most database manage

展开阅读全文
相关资源
正为您匹配相似的精品文档
相关搜索

最新文档


当前位置:首页 > 办公文档 > PPT模板库 > 其它

电脑版 |金锄头文库版权所有
经营许可证:蜀ICP备13022795号 | 川公网安备 51140202000112号