关于Oracle数据库的详细讲解,特别是Oracle的体系结构,是Oracle DBA的一个好资料。
Oracle_DB_DBA_Book_Overview
相关推荐
Oracle DBA Book Overview
Introduction to the first book on Oracle DBA, providing comprehensive insights into Oracle database administration and management techniques.
Oracle
15
2024-07-30
Db_Compare_For_Oracle_Overview
Db Compare For Oracle
Oracle
20
2024-11-03
The.Little.Mongo.DB.Schema.Design.Book151739402
The Little MongoDB Schema Design Book, covers the fundamentals off Schema design with MongoDB, as well as several useful Schema design patters for your applications. I wrote this book to be a helpful and concise guide to MongoDB Schema design, as well as a repository to look up specific MongoDB Sche
MongoDB
0
2025-06-15
Oracle DBA管理DB2实践指南
Oracle 的 DBA 要接手 DB2,多少有点像老司机换了新车——方向盘还是那个方向盘,但按钮位置全换了。系统目录不一样,存储机制不一样,查询优化器也不一样。不过别怕,文章讲得挺细,从版本选型、工具配置,到元数据管理和高可用,基本都带到了。像Command Center、SYSCAT这些名词,看着陌生,其实用起来也就那么回事。一边看一边试,快就熟了。跨平台作业最怕踩坑,这里讲了不少实际经验。比如 DB2 的空间分配,完全靠 DDL 搞定,和 Oracle 靠init.ora配置就不太一样。你要是平时只用 OEM 做管理工具,那得试试 DB2 的那些图形化工具,虽然界面土点儿,但功能也不差。
DB2
0
2025-06-17
The Little MongoDB Book入门指南
免费开源的《The Little MongoDB Book》是 MongoDB 入门里比较推荐的一本。结构清晰,讲得也不枯燥,挺适合你一边动手一边看。前半部分了增删查改那些基本操作,后面慢慢讲到数据建模、MapReduce,内容递进得挺顺。对于从传统数据库转过来的开发者来说,过渡也比较自然。PDF 和 markdown 格式都有,而且直接托管在 GitHub 上,下载也方便。MongoDB 的数据建模其实挺讲究的,关系型那一套在这里不一定都能用上。如果你平时用得多,可以看看这篇文章:MongoDB 数据建模,对实际业务建模还蛮有。另外,MapReduce 也是个关键点,在大规模数据聚合时用得上
MongoDB
0
2025-06-15
Oracle Database Functions Overview
Oracle数据库函数是数据库管理系统Oracle中实现特定计算或数据处理的核心工具。它们分为多种类型,包括聚合函数、分析函数、转换函数、数学函数等,广泛应用于数据查询、数据分析和报表生成等场景。
一、聚合函数是Oracle中最常见的函数之一,它们用于对一组值进行汇总,返回单个结果。例如:1. SUM():计算指定列的所有值的总和。2. COUNT():计算非空值的数量,可选择性地指定列名以计算特定列的非空值数量。3. AVG():计算平均值。4. MAX()和MIN():找出指定列的最大值和最小值。
二、分析函数是Oracle 8.1.6引入的新特性,与聚合函数不同的是,它们在每个分组内返回
Oracle
31
2024-11-05
Oracle Procedure Syntax Overview
Oracle Procedure (proc) 的基本语法如下:
CREATE [OR REPLACE] PROCEDURE procedure_name
IS
BEGIN
-- procedure body
END procedure_name;
CREATE: 用于创建新的过程。
OR REPLACE: 可选项,允许替换已存在的过程。
procedure_name: 过程的名称。
IS: 标识过程体的开始。
BEGIN: 过程逻辑的开始。
END: 过程的结束,后跟过程名称。
在过程体中可以包含 SQL 语句和其他 PL/SQL 逻辑。
Oracle
14
2024-11-01
Oracle Database Architecture Overview
The Oracle Architecture is composed of several layers that work together to provide a robust, scalable database system. At the core is the Oracle Database, which relies on a multi-tiered architecture for storage and management of data. Key components include the Instance, which is made up of memory
Oracle
6
2024-11-05
oracle_rac_11g_training_student_book_1
The Oracle RAC 11g Training Student Book I provides a comprehensive guide to learning Oracle Real Application Clusters (RAC). This student book covers essential concepts and practical applications for Oracle RAC in version 11g, focusing on configuration, performance tuning, and high availability fea
Oracle
10
2024-11-05