出版時間:2006-06 出版社:高等教育出版社 作者:西爾伯沙茨,科思,蘇達爾善 頁數(shù):1142
Tag標簽:無
前言
20世紀末,以計算機和通信技術(shù)為代表的信息科學和技術(shù)對世界經(jīng)濟、科技、軍事、教育和文化等產(chǎn)生了深刻影響。信息科學技術(shù)的迅速普及和應(yīng)用,帶動了世界范圍信息產(chǎn)業(yè)的蓬勃發(fā)展,為許多國家?guī)砹素S厚的回報。. 進入21世紀,尤其隨著我國加入WTO,信息產(chǎn)業(yè)的國際競爭將更加激烈。我國信息產(chǎn)業(yè)雖然在20世紀末取得了迅猛發(fā)展,但與發(fā)達國家相比,甚至與印度、愛爾蘭等國家相比,還有很大差距。國家信息化的發(fā)展速度和信息產(chǎn)業(yè)的國際競爭能力,最終都將取決于信息科學技術(shù)人才的質(zhì)量和數(shù)量。引進國外信息科學和技術(shù)優(yōu)秀教材,在有條件的學校推動開展英語授課或雙語教學,是教育部為加快培養(yǎng)大批高質(zhì)量的信息技..
內(nèi)容概要
《數(shù)據(jù)庫系統(tǒng)概念》(第5版影印版》介紹了數(shù)據(jù)庫管理的基本概念,包括數(shù)據(jù)庫設(shè)計、數(shù)據(jù)庫語言和數(shù)據(jù)庫系統(tǒng)實現(xiàn)。除了具有可作為入門課程的基本內(nèi)容外,《數(shù)據(jù)庫系統(tǒng)概念》(第5版影印版》還包括可作為課程補充的高級內(nèi)容或高級課程的入門性材料。書中的基本概念和算法通常基于已有的商品化或?qū)嶒炗玫臄?shù)據(jù)庫系統(tǒng)中的概念和算法。我們的目的是以一種一般化的形式來描述這些概念和算法,而不是與某種特定的數(shù)據(jù)庫聯(lián)系在一起。特定數(shù)據(jù)庫系統(tǒng)的細節(jié)在第9章“實例研究”中討論。
作者簡介
作者:(美國)西爾伯沙茨
書籍目錄
第1章 導(dǎo)論第1部分 關(guān)系數(shù)據(jù)庫 第2章 關(guān)系模型 第3章 SQL 第4章 高級SQL 第5章 其他關(guān)系語言第2部分 數(shù)據(jù)庫設(shè)計 第6章 數(shù)據(jù)庫設(shè)計和E-R模型 第7章 關(guān)系數(shù)據(jù)庫設(shè)計 第8章 應(yīng)用設(shè)計和開發(fā) 第9章 面向?qū)ο蟮臄?shù)據(jù)庫 第10章 XML第4部分 數(shù)據(jù)存儲與查詢 第11章 存儲和文件結(jié)構(gòu) 第12章 索引與散列 第13章 查詢處理 第14章 查詢優(yōu)化第5部分 事務(wù)管理 第15章 事務(wù) 第16章 并發(fā)控制 第17章 恢復(fù)系統(tǒng)第6部分 數(shù)據(jù)挖掘瑟信息檢索 第18章 數(shù)據(jù)分析和挖掘 第19章 信息檢索第7部分 系統(tǒng)體系結(jié)構(gòu) 第20章 數(shù)據(jù)庫系統(tǒng)體系結(jié)構(gòu) 第21章 并行數(shù)據(jù)庫 第22章 分布式數(shù)據(jù)庫第8部分 其他主題 第23章 高級應(yīng)用開發(fā) 第24章 高級數(shù)據(jù)類型與新的應(yīng)用 第25章 高級事務(wù)處理第9部分 實例研究 第26章 PostgreSQL 第27章 Oracle 第28章 IBM DB2 Universal數(shù)據(jù)庫 第29章 Microsoft SQL Server第10部分 附錄附錄A 網(wǎng)狀模型(在線內(nèi)容)附錄B 層次模型(在線內(nèi)容)附錄C 高級關(guān)系數(shù)據(jù)庫設(shè)計(在線內(nèi)容)參考文獻索引
章節(jié)摘錄
版權(quán)頁:插圖:Relational Model. The relational model uses a collection of tables to representboth data and the relationships among those data. Each table has multiplecolumns, and each column has a unique name. The relational model is anexample of a record-based model. Record-based models are so named becausethe database is structured in fixed-format records of several types. Each tablecontains records of a particular type. Each record type defines a fixed numberof fields, or attributes. The columns of the table correspond to the attributes ofthe record type. The relational data model is the most widely used data model,and a vast majority of current database systems are based on the relationalmodel. Chapters 2 through 7 cover the relational model in detail.The Entity-Relationship Model. The entity-relationship (E-R) data model isbased on a perception of a real world that consists of a collection of basicobjects, called entities, and of relationships among these objects. An entity is a"thing" or "object" in the real world that is distinguishable from other objects.The entity-relationship model is widely used in database design, and Chapter6 explores it in detail.Object-Based Data Model. The object-oriented data model is another datamodel that has seen increasing attention. The object-oriented model can beseen as extending the E-R model with notions of encapsulation, methods (func-tions), and object identity. The object-relational data model combines featuresof the object-oriented data model and relational data model. Chapter 9 exam-ines the object-based data model.Semistructured Data Model. The semistructured data model permits the spec-ification of data where individual data items of the same type may have dif-ferent sets of attributes. This is in contrast to the data models mentioned ear-lier, where every data item of a particular type must have the same set of at-tributes. The Extensible Markup Language (XML) is widely used to representsemistructured data. Chapter 10 covers it.
編輯推薦
數(shù)據(jù)庫管理已經(jīng)從一種專門的計算機應(yīng)用發(fā)展為現(xiàn)代計算環(huán)境中的一個核心部分,因此,有關(guān)數(shù)據(jù)庫系統(tǒng)的知識已成為計算機科學教育的基本部分?!稊?shù)據(jù)庫系統(tǒng)概念》(第5版影印版》可作為本科三年級或四年級的數(shù)據(jù)庫入門教材,也可作為研究生一年級的教材。
圖書封面
圖書標簽Tags
無
評論、評分、閱讀與下載
數(shù)據(jù)庫系統(tǒng)概念 PDF格式下載