没有合适的资源?快使用搜索试试~ 我知道了~
首页Oracle database 11g Concepts中英文对照
第 1 章 Oracle 数据库简介 第 2 章 表和表簇 第 3 章 索引和索引组织表 第 4章 分区、 视图和其他模式对象 第 5 章 数据完整性 第 6 章 章 数据字典和动态性能视图 第 8 章 服务器端编程:PL/SQL 和 Java 第 9 章 数据并发性和一致性 第 10 章 事务 第 11 章 存储结构 ............
资源详情
资源评论
资源推荐

Next
View PDF
Contents
Next
View PDF
目录
Preface
Audience
Documentation Accessibility
Related Documentation
Conventions
序言
听众
文档可访问性
相关文档
约定
1 Introduction to Oracle Database
About Relational Databases
o Database Management System (DBMS)
o Relational Model
o Relational Database Management System (RDBMS)
o Brief History of Oracle Database
Schema Objects
o Tables
o Indexes
Data Access
o Structured Query Language (SQL)
o PL/SQL and Java
Transaction Management
o Transactions
o Data Concurrency
o Data Consistency
Oracle Database Architecture
o Database and Instance
o Database Storage Structures
o Database Instance Structures
o Application and Networking Architecture
Oracle Database Documentation Roadmap
o Basic Group
o Intermediate Group
第 1 章 Oracle 数据库简介
关于关系数据库
o 数据库管理系统(DBMS)
o 关系模型
o 关系数据库管理系统(RDBMS)
o Oracle 数据库发展简史
模式对象
o 表
o 索引
数据访问
o 结构化查询语言(SQL)
o PL/SQL 和 Java
事务管理
o 事务
o 数据并发性
o 数据一致性
Oracle 数据库体系结构
o 数据库和实例
o 数据库存储结构
o 数据库实例结构
o 应用程序和网络体系结构
Oracle 数据库文档路线图
o 基本组
o 中级组

o Advanced Group
o 高级组
Part I Oracle Relational Data Structures
第一部分 Oracle 关系数据结构
2 Tables and Table Clusters
Introduction to Schema Objects
o Schema Object Types
o Schema Object Storage
o Schema Object Dependencies
o SYS and SYSTEM Schemas
o Sample Schemas
Overview of Tables
o Columns and Rows
o Example: CREATE TABLE and ALTER TABLE Statements
o Oracle Data Types
o Integrity Constraints
o Object Tables
o Temporary Tables
o External Tables
o Table Storage
Overview of Table Clusters
o Overview of Indexed Clusters
o Overview of Hash Clusters
第 2 章 表和表簇
模式对象简介
o 模式对象类型
o 模式对象存储
o 模式对象依赖
o SYS 和 SYSTEM 模式
o 示例模式
表概述
o 列和行
o 示例:CREATE TABLE 和 ALTER TABLE 语句
o Oracle 数据类型
o 完整性约束
o 对象表
o 临时表
o 外部表
o 表存储
表簇概述
o 索引化表簇概述
o 哈希簇概述
3 Indexes and Index-Organized Tables
Overview of Indexes
o Index Characteristics
o B-Tree Indexes
o Bitmap Indexes
o Function-Based Indexes
o Application Domain Indexes
o Index Storage
Overview of Index-Organized Tables
o Index-Organized Table Characteristics
o Index-Organized Tables with Row Overflow Area
第 3 章 索引和索引组织表
索引概述
o 索引特征
o B-树索引
o 位图索引
o 基于函数的索引
o 应用程序域索引
o 索引存储
索引组织表概述
o 索引组织表特征
o 索引组织表的行溢出区

o Secondary Indexes on Index-Organized Tables
o 索引组织表的辅助索引
4 Partitions, Views, and Other Schema Objects
Overview of Partitions
o Partition Characteristics
o Partitioned Tables
o Partitioned Indexes
o Partitioned Index-Organized Tables
Overview of Views
o Characteristics of Views
o Updatable Join Views
o Object Views
Overview of Materialized Views
o Characteristics of Materialized Views
o Refresh Methods for Materialized Views
o Query Rewrite
Overview of Sequences
o Sequence Characteristics
o Concurrent Access to Sequences
Overview of Dimensions
o Hierarchical Structure of a Dimension
o Creation of Dimensions
Overview of Synonyms
第 4 章 分区、 视图和其它模式对象
分区概述
o 分区特征
o 分区表
o 分区索引
o 分区索引组织表
视图概述
o 视图特征
o 可更新联合视图
o 对象视图
物化视图概述
o 物化视图的特征
o 物化视图的刷新方法
o 查询重写
序列概述
o 序列概述
o 对序列的并发访问
维度概述
o 维度的层次结构
o 创建维度
同义词概述
5 Data Integrity
Introduction to Data Integrity
o Techniques for Guaranteeing Data Integrity
o Advantages of Integrity Constraints
Types of Integrity Constraints
o NOT NULL Integrity Constraints
o Unique Constraints
o Primary Key Constraints
o Foreign Key Constraints
o Check Constraints
States of Integrity Constraints
第 5 章 数据完整性
数据完整性介绍
o 用于保证数据完整性的技术
o 完整性约束的优势
完整性约束的类型
o 非空完整性约束
o 唯一性约束
o 主键约束
o 外键约束
o 检查性约束
完整性约束的状态

o Checks for Modified and Existing Data
o Deferrable Constraints
o Examples of Constraint Checking
o 对现有数据和新数据的检查
o 可延迟约束
o 约束检查的示例
6 Data Dictionary and Dynamic Performance Views
Overview of the Data Dictionary
o Contents of the Data Dictionary
o Storage of the Data Dictionary
o How Oracle Database Uses the Data Dictionary
Overview of the Dynamic Performance Views
o Contents of the Dynamic Performance Views
o Storage of the Dynamic Performance Views
Database Object Metadata
第 6 章 数据字典和动态性能视图
数据字典概述
o 数据字典的内容
o 数据字典存储
o Oracle 数据库如何使用数据字典
动态性能视图概述
o 动态性能视图的内容
o 动态性能视图的存储
数据库对象元数据
Part II Oracle Data Access
第二部分 Oracle 数据访问
7 SQL
Introduction to SQL
o SQL Data Access
o SQL Standards
Overview of SQL Statements
o Data Definition Language (DDL) Statements
o Data Manipulation Language (DML) Statements
o Transaction Control Statements
o Session Control Statements
o System Control Statement
o Embedded SQL Statements
Overview of the Optimizer
o Use of the Optimizer
o Optimizer Components
o Access Paths
o Optimizer Statistics
o Optimizer Hints
Overview of SQL Processing
o Stages of SQL Processing
o How Oracle Database Processes DML
第 7 章 SQL
SQL 简介
o SQL 数据访问
o SQL 标准
SQL 语句概述
o 数据定义语言 (DDL) 语句
o 数据操作语言 (DML) 语句
o 事务控制语句
o 会话控制语句
o 系统控制语句
o 嵌入式的 SQL 语句
优化器概述
o 使用优化器
o 优化器组件
o 访问路径
o 优化器统计
o 优化器提示
SQL 处理的概述
o SQL 处理的阶段

o How Oracle Database Processes DDL
o Oracle 数据库如何处理 DML
o Oracle 数据库如何处理 DDL
8 Server-Side Programming: PL/SQL and Java
Introduction to Server-Side Programming
Overview of PL/SQL
o PL/SQL Subprograms
o PL/SQL Packages
o PL/SQL Anonymous Blocks
o PL/SQL Language Constructs
o PL/SQL Collections and Records
o How PL/SQL Runs
Overview of Java in Oracle Database
o Overview of the Java Virtual Machine (JVM)
o Java Programming Environment
Overview of Triggers
o Advantages of Triggers
o Types of Triggers
o Timing for Triggers
o Creation of Triggers
o Execution of Triggers
o Storage of Triggers
第 8 章 服务器端编程:PL/SQL 和 Java
服务器端编程简介
PL/SQL 概述
o PL/SQL 子程序
o PL/SQL 包
o PL/SQL 匿名块
o PL/SQL 语言结构
o PL/SQL 集合和记录
o PL/SQL 如何运行
Oracle 数据库中的 Java 概述
o Java 虚拟机 (JVM) 的概述
o Java 编程环境
触发器概述
o 触发器的优势
o 触发器类型
o 触发时间
o 创建触发器
o 执行触发器
o 触发器存储
Part III Oracle Transaction Management
第三部分 Oracle 事务管理
9 Data Concurrency and Consistency
Introduction to Data Concurrency and Consistency
o Multiversion Read Consistency
o Locking Mechanisms
o ANSI/ISO Transaction Isolation Levels
Overview of Oracle Database Transaction Isolation Levels
o Read Committed Isolation Level
o Serializable Isolation Level
o Read-Only Isolation Level
Overview of the Oracle Database Locking Mechanism
o Summary of Locking Behavior
第 9 章 数据并发性和一致性
数据并发和一致性介绍
o 多版本读一致性
o 锁定机制
o ANSI/ISO 事务隔离级别
Oracle 数据库事务隔离级别概述
o 读提交隔离级别
o 可串行化隔离级别
o 只读隔离级别
数据库锁定机制概述
o 锁定行为总结
剩余554页未读,继续阅读















安全验证
文档复制为VIP权益,开通VIP直接复制

评论0