[翻译]MySQL与PostgreSQL9.0的复制功能对比 2014-12-09 postgresql 6876 words 14 mins read 源文地址 作者:Robin Schumacher 和 Gary Carter,EnterpriseDB 公司 原文: Replication is one of the most popular features used Read more..
PostgreSQL窗口函数 2014-12-08 postgresql 1244 words 3 mins read 什么是窗口函数 PostgreSQL窗口函数 窗口函数提供跨行相 Read more..
PostgreSQL选择某组sum结果最小的所有数据 2014-12-05 postgresql 787 words 2 mins read 在 PostgreSQL 技术群里,今天发现有个人在群里“求救”,说想要执行一条S Read more..
[翻译]PostgreSQL 进程构架 2014-12-04 postgresql 371 words 1 min read ps aux | grep postgres postgres 31964 0.0 0.3 162180 12436 pts/0 S 18:09 0:00 /usr/local/pg/bin/postgres -D /usr/local/pg/data postgres 31966 0.0 0.0 162312 2192 ? Ss 18:09 0:00 postgres: checkpointer Read more..
PostgreSQL基础学习(一) 2014-12-03 postgresql 1139 words 3 mins read 简介 PostgreSQL官网 PostgreSQL 官网号称:它是最世界最先进的开 Read more..
《数据库查询优化器的艺术》第三章物理查询优化学习笔记 2014-12-03 postgresql 2632 words 6 mins read 代价模型 总代价 = IO 代价 + CPU 代价 COST = P * a_page_cpu_time + W * T P:计划运行 Read more..
《数据库查询优化器的艺术》第二章逻辑查询优化学习笔记 2014-12-03 postgresql 6149 words 13 mins read 主要解决的问题 如何找出SQL语句等价的变换形式,使得SQL执 Read more..
自行测试的1亿条数据中PostgreSQL性能 2014-12-02 postgresql 1156 words 3 mins read 插入一亿条数据 test=# insert into tbl_time1 select generate_series(1,100000000),clock_timestamp(),now(); INSERT 0 100000000 Time: 525833.218 ms 约:8.7分钟 COUN Read more..
《数据库查询优化器的艺术》第一章学习笔记 2014-12-02 postgresql 1394 words 3 mins read 数据库管理系统 数据定义 数据操纵 数据库的运行管理 数据库的建立和 Read more..
[翻译]PostgreSQL中的死锁 2014-12-01 postgresql 2015 words 5 mins read 原文 在讨论死锁之前,让我们看一下锁的类型以及它们在Postg Read more..
[翻译]高效使用PostgreSQL索引 2014-12-01 postgresql 3860 words 8 mins read 原文 在Postgres里有许多种索引类型,也有不同的方式来使 Read more..
[翻译]PostgreSQL中的log, xlog和clog 2014-12-01 postgresql 986 words 2 mins read [翻译]PostgreSQL中的log, xlog和clog 原 Read more..
PostgreSQL中代替MySQL的内存表方法 2014-10-01 postgresql 514 words 2 mins read 今天在群里发现有人问PostgreSQL里,有没有类似MyS Read more..