PostgreSQL primary key expansion using concurrently maintenance

Source: Internet
Author: User
Tags modifiers

1. Pre-maintenance
postgres=# \d+ test                                                           table "Public.test"   Column |             Type              |                      Modifiers| Storage | Stats target |  Description--------+-----------------------------+----------------------------------------------------+-------- -+--------------+-------------  id     | integer                      | not null  Defaultnextval (' test_id_seq ':: Regclass)  | plain   |               |  val    | timestamp  without time zone | default now () | plain   |               | indexes:      "Test_pkey"  PRIMARY KEY, btree  (ID)
2. Create a new unique index
postgres=# CREATE UNIQUE INDEX concurrently on test USING btree (ID); CREATE INDEX
3. Replace the primary key
postgres=# BEGIN; beginpostgres=# ALTER TABLE test DROP CONSTRAINT Test_pkey; Alter tablepostgres=# alter TABLE test ADD CONSTRAINT test_id_idx PRIMARY KEY usingindex test_id_idx; ALTER tablepostgres=# COMMIT; COMMIT
4. After maintenance
postgres=# \d+ test                                                           table "Public.test"   Column |             Type              |                      Modifiers| Storage | Stats target |  Description--------+-----------------------------+----------------------------------------------------+-------- -+--------------+-------------  id     | integer                      | not null  Defaultnextval (' test_id_seq ':: Regclass)  | plain   |               |  val    | timestamp  without time zone | default now () | plain   |               | indexes:      "Test_id_idx"  PRIMARY KEY, btree  (ID)

The benefit is that you can maintain the primary key when the load is low during the day


PostgreSQL primary key expansion using concurrently maintenance

Related Article

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.