Postgres database three types of speed comparison for creating statements

Source: Internet
Author: User
Tags postgres database

    1. Number of records in table: 1578463

Select COUNT (*) from Reorder_guideline; Count---------1578463 (1 Row Records)

2. three statements creating tables CREATE TABLE:

(1) most commonly used (23171.485ms)

A1stream_db=> CREATE table reorder_guideline_2 as table reorder_guideline; Time: 23171.485 ms

(2) with unlogged logo (1734.085ms)

Create unlogged table reorder_guideline_2 as table reorder_guideline; Time: 1734.085 ms

(3) temporary table with temp ID (1666.934ms)

Create temp table reorder_guideline_2 as table reorder_guideline; Time: 1666.934 ms


Postgres database three types of speed comparison for creating statements

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.