The use of PostgreSQL

Source: Internet
Author: User
Tags postgresql

Since it was installed in the United States of PostgreSQL, resulting in the return to Shanghai after use, found that the time data display is incorrect.

To acomplish the timezone change in Postgres 9.6 you must:

(1) View current timezone:

Show TimeZone;

Or check it out on Pgadmin 4:

The time zone is a session parameter. So, you can change the timezone for the current session.

set timezone TO ‘Asia/Shanghai‘;

Note: ' Set timezone to: ' Only sets the timezone for the current session and if your change the timezone configuration parameter In postgresql.conf it should a change of the timezone for all databases.

Choose a timezone from:

SELECT * FROM pg_timezone_names;

Search for the closest your zone and set example:

ALTER DATABASE postgres SET timezone TO ‘Asia/Shanghai‘;

Use your DB name.

(2) Uncomment the "timezone" line in your postgresql.conf file and put your timezone as shown:

(3) Restart Postgres or Tools>reload Configuration (then refresh)

Reference: Https://stackoverflow.com/questions/6663765/postgres-default-timezone

The use of PostgreSQL

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.