码迷,mamicode.com
首页 > 数据库 > 详细

Postgres 数据库三种创建语句的速度对比

时间:2014-09-05 16:31:11      阅读:257      评论:0      收藏:0      [点我收藏+]

标签:style   color   os   io   ar   strong   数据   sp   log   

  1. 表的记录数: 1578463

select count(*) from reorder_guideline;
  count
---------
 1578463
(1 行记录)

2. 三种创建表的语句Create Table:

(1) 最常用的 (23171.485ms)

a1stream_db=> create table reorder_guideline_2 as table reorder_guideline;
 
时间:23171.485 ms

(2) 带Unlogged 标识的 (1734.085ms)

create UNLOGGED table reorder_guideline_2 as table reorder_guideli
ne; 
时间:1734.085 ms

(3) 带TEMP 标识的临时表(1666.934ms)

create temp table reorder_guideline_2 as table reorder_guideline;
时间:1666.934 ms


Postgres 数据库三种创建语句的速度对比

标签:style   color   os   io   ar   strong   数据   sp   log   

原文地址:http://my.oschina.net/frankies/blog/310606

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!