山东大学数据库系统英语课件01绪论

上传人:东*** 文档编号:280397652 上传时间:2022-04-21 格式:PPT 页数:33 大小:1.71MB
返回 下载 相关 举报
山东大学数据库系统英语课件01绪论_第1页
第1页 / 共33页
山东大学数据库系统英语课件01绪论_第2页
第2页 / 共33页
山东大学数据库系统英语课件01绪论_第3页
第3页 / 共33页
山东大学数据库系统英语课件01绪论_第4页
第4页 / 共33页
山东大学数据库系统英语课件01绪论_第5页
第5页 / 共33页
点击查看更多>>
资源描述

《山东大学数据库系统英语课件01绪论》由会员分享,可在线阅读,更多相关《山东大学数据库系统英语课件01绪论(33页珍藏版)》请在金锄头文库上搜索。

1、Database System Concepts, 6th Ed.Silberschatz, Korth and SudarshanSee www.db- for conditions on re-use Chapter 1: Introduction Silberschatz, Korth and Sudarshan1.2Database System Concepts - 6th EditionDatabase Management System (DBMS)nDBMS contains information about a particular enterpriselCollectio

2、n of interrelated datalSet of programs to access the data lAn environment that is both convenient and efficient to usenDatabase Applications:lBanking: transactionslAirlines: reservations, scheduleslUniversities: registration, gradeslSales: customers, products, purchaseslOnline retailers: order track

3、ing, customized recommendationslManufacturing: production, inventory, orders, supply chainlHuman resources: employee records, salaries, tax deductionsnDatabases can be very large.nDatabases touch all aspects of our livesSilberschatz, Korth and Sudarshan1.3Database System Concepts - 6th EditionUniver

4、sity Database ExamplenApplication program exampleslAdd new students, instructors, and courseslRegister students for courses, and generate class rosterslAssign grades to students, compute grade point averages (GPA) and generate transcriptsnIn the early days, database applications were built directly

5、on top of file systemsSilberschatz, Korth and Sudarshan1.4Database System Concepts - 6th EditionDrawbacks of using file systems to store dataDrawbacks of using file systems to store datalData redundancy and inconsistency4Multiple file formats, duplication of information in different fileslDifficulty

6、 in accessing data 4Need to write a new program to carry out each new tasklData isolation multiple files and formatslIntegrity problems4Integrity constraints (e.g., account balance 0) become “buried” in program code rather than being stated explicitly4Hard to add new constraints or change existing o

7、nesSilberschatz, Korth and Sudarshan1.5Database System Concepts - 6th EditionDrawbacks of using file systems to store data (Cont.)Drawbacks of using file systems to store data (Cont.)lAtomicity of updates4Failures may leave database in an inconsistent state with partial updates carried out4Example:

8、Transfer of funds from one account to another should either complete or not happen at alllConcurrent access by multiple users4Concurrent access needed for performance4Uncontrolled concurrent accesses can lead to inconsistenciesExample: Two people reading a balance (say 100) and updating it by withdr

9、awing money (say 50 each) at the same timelSecurity problems4Hard to provide user access to some, but not all, dataDatabase systems offer solutions to all the above problemsSilberschatz, Korth and Sudarshan1.9Database System Concepts - 6th EditionData ModelsnA collection of tools for describing lDat

10、a lData relationshipslData semanticslData constraintsnRelational modelnEntity-Relationship data model (mainly for database design) nObject-based data models (Object-oriented and Object-relational)nSemistructured data model (XML)nOther older models:lNetwork model lHierarchical modelSilberschatz, Kort

11、h and Sudarshan1.10Database System Concepts - 6th EditionRelational ModelnRelational model (Chapter 2)nExample of tabular data in the relational modelColumnsRowsSilberschatz, Korth and Sudarshan1.11Database System Concepts - 6th EditionA Sample Relational DatabaseSilberschatz, Korth and Sudarshan1.1

12、3Database System Concepts - 6th EditionData Definition Language (DDL)nSpecification notation for defining the database schemaExample:create table instructor ( ID char(5), name varchar(20), dept_name varchar(20), salary numeric(8,2)nDDL compiler generates a set of table templates stored in a data dic

13、tionarynData dictionary contains metadata (i.e., data about data)lDatabase schema lIntegrity constraints4Primary key (ID uniquely identifies instructors)4Referential integrity (references constraint in SQL)e.g. dept_name value in any instructor tuple must appear in department relationlAuthorizationS

14、ilberschatz, Korth and Sudarshan1.14Database System Concepts - 6th EditionSQLnSQL: widely used non-procedural languagelExample: Find the name of the instructor with ID 22222selectnamefrominstructorwhereinstructor.ID = 22222lExample: Find the ID and building of instructors in the Physics dept. select

15、 instructor.ID, department.buildingfrom instructor, departmentwhere instructor.dept_name = department.dept_name and department.dept_name = Physics nApplication programs generally access databases through one oflLanguage extensions to allow embedded SQLlApplication program interface (e.g., ODBC/JDBC)

16、 which allow SQL queries to be sent to a databasenChapters 3, 4 and 5Silberschatz, Korth and Sudarshan1.16Database System Concepts - 6th EditionDatabase Design?nIs there any problem with this design?Silberschatz, Korth and Sudarshan1.17Database System Concepts - 6th EditionDesign ApproachesnNormalization Theory (Chapter 8)lFormalize what designs are bad, and test for themnEntity Relationship Model (Chapter 7)lModels an enterprise as a collection of entities and relationships4Entity: a “thing” or

展开阅读全文
相关资源
相关搜索

当前位置:首页 > IT计算机/网络 > 数据库

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