PostgreSQL (64-bit)

最新版本 PostgreSQL 12.1 (64-bit)

PostgreSQL 12.1 (64-bit)

PostgreSQL 12.1 (64-bit)
PostgreSQL 64 位是一個功能強大的開源對象關係數據庫系統。它擁有超過 15 年的積極開發和經過驗證的架構,在可靠性,數據完整性和正確性方面贏得了良好聲譽。它運行在所有主要的操作系統上,包括 Linux,UNIX(AIX,BSD,HP-UX,SGI IRIX,Mac OS X,Solaris,Tru64)和 Windows。  PostgreSQL 64 位是一個功能強大的對象關係數據庫管理系統!下載 PostgreSQL 脫機安裝程序安裝 64 位的 PC!

它完全符合 ACID,完全支持外鍵,連接,視圖,觸發器和存儲過程(多語言)。它包括大多數 SQL:2008 數據類型,包括 INTEGER,NUMERIC,BOOLEAN,CHAR,VARCHAR,DATE,INTERVAL 和 TIMESTAMP。它還支持存儲二進制大對象,包括圖片,聲音或視頻。它具有用於 C / C ++,Java,.Net,Perl,Python,Ruby,Tcl,ODBC 等的本地編程接口,以及特殊的文檔(表大小可以達到 32TB).

也可用:下載 PostgreSQL for Mac

ScreenShot

軟體資訊
檔案版本 PostgreSQL 12.1 (64-bit)

檔案名稱 postgresql-12.1-1-windows-x64.exe
檔案大小 187 MB
系統 Windows XP64 / Vista64 / Windows 7 64 / Windows 8 64 / Windows 10 64
軟體類型 開源軟體
作者 PostgreSQL Global Development Group
官網 http://www.postgresql.org/about/
更新日期 2019-11-15
更新日誌

What's new in this version:

- A dump/restore is not required for those running 12.X
- E.1.2. Changes
- Fix crash when ALTER TABLE adds a column without a default value along with making other changes that require a table rewrite (Andres Freund)
- Fix lock handling in REINDEX CONCURRENTLY (Michael Paquier)
- REINDEX CONCURRENTLY neglected to take a session-level lock on the new index version, potentially allowing other sessions to manipulate it too soon. Also, a query-cancel or session-termination interrupt arriving at the wrong time could result in failure to release the session-level locks that REINDEX CONCURRENTLY does hold
- Avoid crash due to race condition when reporting the progress of a CREATE INDEX CONCURRENTLY or REINDEX CONCURRENTLY command
- Avoid creating duplicate dependency entries during REINDEX CONCURRENTLY
- This bug resulted in bloat in pg_depend, but no worse consequences than that
- Prevent VACUUM from trying to freeze an old multixact ID involving a still-running transaction
- This case would lead to VACUUM failing until the old transaction terminates
- Fix “wrong type of slot” error when trying to CLUSTER on an expression index
- SET CONSTRAINTS ... DEFERRED failed on partitioned tables, incorrectly complaining about lack of triggers
- Fix failure when creating indexes for a partition, if the parent partitioned table contains any dropped columns
- Fix dropping of indexed columns in partitioned tables
- Previously this might fail with an error message complaining about the dependencies of the indexes. It should automatically drop the indexes, instead
- Ensure that a partition index can be dropped after a failure to reindex it concurrently
- The index's pg_class.relispartition flag was left in the wrong state in such a case, causing DROP INDEX to fail
- Fix handling of equivalence class members for partition-wise joins
- This oversight could lead either to failure to use a feasible partition-wise join plan, or to a “could not find pathkey item to sort” planner failure
- Ensure that offset expressions in WINDOW clauses are processed when a query's expressions are manipulated
- This oversight could result in assorted failures when the offsets are nontrivial expressions. One example is that a function parameter reference in such an expression would fail if the function was inlined
- Avoid postmaster failure if a parallel query requests a background worker when no postmaster child process array slots remain free
- Fix crash triggered by an EvalPlanQual recheck on a table with a BEFORE UPDATE trigger
- Fix “unexpected relkind” error when a query tries to access a TOAST table
- The error should say that permission is denied, but this case got broken during code refactoring
- Provide a relevant error context line when an error occurs while setting GUC parameters during parallel worker startup
- Ensure that fsync() is applied only to files that are opened read/write
- Some code paths tried to do this after opening a file read-only, but on some platforms that causes “bad file descriptor” or similar errors
- Allow encoding conversion to succeed on longer strings than before
- Previously, there was a hard limit of 0.25GB on the input string, but now it will work as long as the converted output is not over 1GB
- Avoid creating unnecessarily-bulky tuple stores for window functions
- In some cases the tuple storage would include all columns of the source table(s), not just the ones that are needed by the query
- Allow repalloc() to give back space when a large chunk is reduced in size
- Ensure that temporary WAL and history files are removed at the end of archive recovery
- Avoid failure in archive recovery if recovery_min_apply_delay is enabled
- recovery_min_apply_delay is not typically used in this configuration, but it should work
- Ignore restore_command, recovery_end_command, and recovery_min_apply_delay settings during crash recovery
- Now that these settings can be specified in postgresql.conf, they could be turned on during crash recovery, but honoring them then is undesirable. Ignore these settings until crash recovery is complete
- Fix logical replication failure when publisher and subscriber have different ideas about a table's replica identity columns
- Declaring a column as part of the replica identity on the subscriber, when it does not exist at all on the publisher, led to “negative bitmapset member not allowed” errors
- Avoid unwanted delay during shutdown of a logical replication walsender
- Fix timeout handling in logical replication walreceiver processes
- Erroneous logic prevented wal_receiver_timeout from working in logical replication deployments
- Correctly time-stamp replication messages for logical decoding
- This oversight resulted, for example, in pg_stat_subscription.last_msg_send_time usually reading as NULL
- Fix race condition during backend exit, when the backend process has previously waited for synchronous replication to occur
- Avoid logging complaints about abandoned connections when using PAM authentication
- libpq-based clients will typically make two connection attempts when a password is required, since they don't prompt their user for a password until their first connection attempt fails. Therefore the server is coded not to generate useless log spam when a client closes the connection upon being asked for a password. However, the PAM authentication code hadn't gotten that memo, and would generate several messages about a phantom authentication failure.
Fix misbehavior of bitshiftright()
- The bitstring right shift operator failed to zero out padding space that exists in the last byte of the result when the bitstring length is not a multiple of 8. While invisible to most operations, any nonzero bits there would result in unexpected comparison behavior, since bitstring comparisons don't bother to ignore the extra bits, expecting them to always be zero
- If you have inconsistent data as a result of saving the output of bitshiftright() in a table, it's possible to fix it with something like
UPDATE mytab SET bitcol = ~(~bitcol) WHERE bitcol != ~(~bitcol)
- Fix result of text position() function (also known as strpos()) for an empty search string
- Historically, and per the SQL standard, the result should be one in such cases, but 12.0 returned zero
- Fix detection of edge-case integer overflow in interval multiplication
- Avoid crashes if ispell text search dictionaries contain wrong affix data
- Avoid memory leak while vacuuming a GiST index
- On Windows, recognize additional spellings of the “Norwegian (Bokmål)” locale name
- Fix libpq to allow trailing whitespace in the string values of integer parameters
- Version 12 tightened libpq's validation of integer parameters, but disallowing trailing whitespace seems undesirable
- In libpq, correctly report CONNECTION_BAD connection status after a failure caused by a syntactically invalid connect_timeout parameter value
- Avoid compile failure if an ECPG client includes ecpglib.h while having ENABLE_NLS defined
- This risk was created by a misplaced declaration: ecpg_gettext() should not be visible to client code
- Fix scheduling of parallel restore of a foreign key constraint on a partitioned table
pg_dump failed to emit full dependency information for partitioned tables' foreign keys. This could allow parallel pg_restore to try to recreate a foreign key constraint too soon
- In pg_dump, ensure stable output order for similarly-named triggers and row-level-security policy objects
- Previously, if two triggers on different tables had the same names, they would be sorted in OID-based order, which is less desirable than sorting them by table name. Likewise for RLS policies
- In pg_upgrade, reject tables with columns of type sql_identifier, as that has changed representation in version 12
- Improve pg_upgrade's checks for the use of a data type that has changed representation, such as line
- The previous coding could be fooled by cases where the data type of interest underlies a stored column of a domain or composite type
- In pg_rewind with the --dry-run option, avoid updating pg_control
- This could lead to failures in subsequent pg_rewind attempts
- Fix failure in pg_waldump with the -s option, when a continuation WAL record ends exactly at a page boundary
- In pg_waldump with the --bkp-details option, avoid emitting extra newlines for WAL records involving full-page writes
- Fix small memory leak in pg_waldump
- Put back pqsignal() as an exported libpq symbol
- This function was removed on the grounds that no clients should be using it, but that turns out to break usage of current libpq with very old versions of psql, and perhaps other applications
- Fix configure's test for presence of libperl so that it works on recent Red Hat releases
- Previously, it could fail if the user sets CFLAGS to -O0
- Ensure correct code generation for spinlocks on PowerPC
- The previous spinlock coding allowed the compiler to select register zero for use with an assembly instruction that does not accept that register, causing a build failure. We have seen only one long-ago report that matches this bug, but it could cause problems for people trying to build modified PostgreSQL code or use atypical compiler options
- On AIX, don't use the compiler option -qsrcmsg
- This avoids an internal compiler error with xlc v16.1.0, with little consequence other than changing the format of compiler error messages
- Fix MSVC build process to cope with spaces in the file path of OpenSSL

PostgreSQL 12.1 (64-bit) 相關參考資料
Download Navicat for PostgreSQL 12.1.25 - Softpedia

Download Navicat for PostgreSQL - A reliable and effective utility mainly designed for PostgreSQL ... Navicat for PostgreSQL comes in handy for database administrators and for users who need to ... W...

https://www.softpedia.com

Downloads - PostgreSQL

14th November 2019: PostgreSQL 12.1, 11.6, 10.11, 9.6.16, 9.5.20, and 9.4.25 Released! Quick Links. Downloads · Binary · Source · Software Catalogue · File ...

https://www.postgresql.org

http extension for windows 64 and 32-bit updated to include ...

Updated October 15th, 2019 64-bit package for PostgreSQL 11, 10 updated to 1.3.1 and PostgreSQL 12 added http extension v1.3.1 release. For those folks on ...

http://www.postgresonline.com

PostgreSQL 11.5, 10.10, 9.6.15, 9.5.19, 9.4.24, and 12 Beta 3 ...

The PostgreSQL Global Development Group has released an update to all supported versions of our database system, including 11.5, 10.10, ...

https://www.postgresql.org

PostgreSQL 12.0 Documentation

228. 9.6. Bit String Functions and Operators . ...... Page 12 ...... PostgreSQL 12.0 on x86_64-pc-linux-gnu, compiled by gcc (Debian. 4.9.2-10) 4.9.2, 64-bit. (1 row).

https://www.postgresql.org

PostgreSQL Database Download | EnterpriseDB

Please Note: EDB no longer provides Linux installers for PostgreSQL 11 and later versions, and users are encouraged to use the platform-native packages.

https://www.enterprisedb.com

PostgreSQL: The world's most advanced open source database

PostgreSQL is a powerful, open source object-relational database system ... 2019-11-14 - PostgreSQL 12.1, 11.6, 10.11, 9.6.16, 9.5.20, and 9.4.25 Released!

https://www.postgresql.org

psqlodbc - PostgreSQL: File Browser

psqlodbc-07_01_0009.zip, 2001-11-27 09:36:32, 197.0 KB. psqlodbc-07_01_0010.zip, 2002-03-19 08:12:29, 197.5 KB. psqlodbc-07_02_0001.zip, 2002-04-15 ...

https://www.postgresql.org

Windows installers - PostgreSQL

14th November 2019: PostgreSQL 12.1, 11.6, 10.11, 9.6.16, 9.5.20, and 9.4.25 ... PostgreSQL Version, 64 Bit Windows Platforms, 32 Bit Windows Platforms ...

https://www.postgresql.org

下載Navicat for PostgreSQL 14 天Windows、macOS ... - Navicat

下載免費的Navicat for PostgreSQL 14 天試用版,並嘗試Navicat 版本12 的最新 ... Windows. Navicat for PostgreSQL 版本12.1. (位置1). 直接下載 (32 bit). (位置2).

https://www.navicat.com