PostgreSQL (32-bit)

最新版本 PostgreSQL 9.6.1 (32-bit)

PostgreSQL 9.6.1 (32-bit)

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

它完全兼容 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 9.6.1 (32-bit)

檔案名稱 postgresql-9.6.1-1-windows.exe
檔案大小 131 MB
系統 Windows XP / Vista / Windows 7 / Windows 8 / Windows 10
軟體類型 開源軟體
作者 PostgreSQL Global Development Group
官網 http://www.postgresql.org/about/
更新日期 2016-10-27
更新日誌

What's new in this version:

- Fix WAL-logging of truncation of relation free space maps and visibility maps (Pavan Deolasee, Heikki Linnakangas)
- It was possible for these files to not be correctly restored during crash recovery, or to be written incorrectly on a standby server. Bogus entries in a free space map could lead to attempts to access pages that have been truncated away from the relation itself, typically producing errors like "could not read block XXX: read only 0 of 8192 bytes". Checksum failures in the visibility map are also possible, if checksumming is enabled.
- Procedures for determining whether there is a problem and repairing it if so are discussed at https://wiki.postgresql.org/wiki/Free_Space_Map_Problems.
- Fix possible data corruption when pg_upgrade rewrites a relation visibility map into 9.6 format (Tom Lane)
- On big-endian machines, bytes of the new visibility map were written in the wrong order, leading to a completely incorrect map. On Windows, the old map was read using text mode, leading to incorrect results if the map happened to contain consecutive bytes that matched a carriage return/line feed sequence. The latter error would almost always lead to a pg_upgrade failure due to the map file appearing to be the wrong length.
- If you are using a big-endian machine (many non-Intel architectures are big-endian) and have used pg_upgrade to upgrade from a pre-9.6 release, you should assume that all visibility maps are incorrect and need to be regenerated. It is sufficient to truncate each relation's visibility map with contrib/pg_visibility's pg_truncate_visibility_map() function. For more information see https://wiki.postgresql.org/wiki/Visibility_Map_Problems.
- Don't throw serialization errors for self-conflicting insertions in INSERT ... ON CONFLICT (Thomas Munro, Peter Geoghegan)
- Fix use-after-free hazard in execution of aggregate functions using DISTINCT (Peter Geoghegan)
- This could lead to a crash or incorrect query results.
- Fix incorrect handling of polymorphic aggregates used as window functions (Tom Lane)
- The aggregate's transition function was told that its first argument and result were of the aggregate's output type, rather than the state type. This led to errors or crashes with polymorphic transition functions.
- Fix COPY with a column name list from a table that has row-level security enabled (Adam Brightwell)
- Fix EXPLAIN to emit valid XML when track_io_timing is on (Markus Winand)
- Previously the XML output-format option produced syntactically invalid tags such as <I/O-Read-Time>. That is now rendered as <I-O-Read-Time>.
- Fix statistics update for TRUNCATE in a prepared transaction (Stas Kelvich)
- Fix bugs in merging inherited CHECK constraints while creating or altering a table (Tom Lane, Amit Langote)
- Allow identical CHECK constraints to be added to a parent and child table in either order. Prevent merging of a valid constraint from the parent table with a NOT VALID constraint on the child. Likewise, prevent merging of a NO INHERIT child constraint with an inherited constraint.
- Show a sensible value in pg_settings.unit for min_wal_size and max_wal_size (Tom Lane)
- Fix replacement of array elements in jsonb_set() (Tom Lane)
- If the target is an existing JSON array element, it got deleted instead of being replaced with a new value.
- Avoid very-low-probability data corruption due to testing tuple visibility without holding buffer lock (Thomas Munro, Peter Geoghegan, Tom Lane)
- Preserve commit timestamps across server restart (Julien Rouhaud, Craig Ringer)
- With track_commit_timestamp turned on, old commit timestamps became inaccessible after a clean server restart.
- Fix logical WAL decoding to work properly when a subtransaction's WAL output is large enough to spill to disk (Andres Freund)
- Fix dangling-pointer problem in logical WAL decoding (Stas Kelvich)
- Round shared-memory allocation request to a multiple of the actual huge page size when attempting to use huge pages on Linux (Tom Lane)
- This avoids possible failures during munmap() on systems with atypical default huge page sizes. Except in crash-recovery cases, there were no ill effects other than a log message.
- Don't try to share SSL contexts across multiple connections in libpq (Heikki Linnakangas)
- This led to assorted corner-case bugs, particularly when trying to use different SSL parameters for different connections.
- Avoid corner-case memory leak in libpq (Tom Lane)
- The reported problem involved leaking an error report during PQreset(), but there might be related cases.
- In pg_upgrade, check library loadability in name order (Tom Lane)
- This is a workaround to deal with cross-extension dependencies from language transform modules to their base language and data type modules.
- Fix pg_upgrade to work correctly for extensions containing index access methods (Tom Lane)
- To allow this, the server has been extended to support ALTER EXTENSION ADD/DROP ACCESS METHOD. That functionality should have been included in the original patch to support dynamic creation of access methods, but it was overlooked.
- Improve error reporting in pg_upgrade's file copying/linking/rewriting steps (Tom Lane, Álvaro Herrera)
- Fix pg_dump to work against pre-7.4 servers (Amit Langote, Tom Lane)
- Disallow specifying both --source-server and --source-target options to pg_rewind (Michael Banck)
- Make pg_rewind turn off synchronous_commit in its session on the source server (Michael Banck, Michael Paquier)
- This allows pg_rewind to work even when the source server is using synchronous replication that is not working for some reason.
- In pg_xlogdump, retry opening new WAL segments when using --follow option (Magnus Hagander)
- This allows for a possible delay in the server's creation of the next segment.
- Fix contrib/pg_visibility to report the correct TID for a corrupt tuple that has been the subject of a rolled-back update (Tom Lane)
- Fix makefile dependencies so that parallel make of PL/Python by itself will succeed reliably (Pavel Raiskup)
- Update time zone data files to tzdata release 2016h for DST law changes in Palestine and Turkey, plus historical corrections for Turkey and some regions of Russia. Switch to numeric abbreviations for some time zones in Antarctica, the former Soviet Union, and Sri Lanka.
- The IANA time zone database previously provided textual abbreviations for all time zones, sometimes making up abbreviations that have little or no currency among the local population. They are in process of reversing that policy in favor of using numeric UTC offsets in zones where there is no evidence of real-world use of an English abbreviation. At least for the time being, PostgreSQL will continue to accept such removed abbreviations for timestamp input. But they will not be shown in the pg_timezone_names view nor used for output.
- In this update, AMT is no longer shown as being in use to mean Armenia Time. Therefore, we have changed the Default abbreviation set to interpret it as Amazon Time, thus UTC-4 not UTC+4.

PostgreSQL 9.6.1 (32-bit) 相關參考資料
Download PostgreSQL

Download PostgreSQL. Open source PostgreSQL packages and installers from EDB. PostgreSQL Version, Linux x86-64, Linux x86-32 ...

https://www.enterprisedb.com

Download PostgreSQL Binaries

View live and pre-recorded webcasts covering database technology topics. Postgres Plus and PostgreSQL Training. Explore the different educational opportunities ...

https://www.enterprisedb.com

Downloading PostgreSQL 9.6.1 (32-bit) from FileHorse.com

A powerful, open source relational database system · PostgreSQL 9.6.1 (32-bit) · Key details about this download. The file will be downloaded ...

https://www.filehorse.com

Downloads

PostgreSQL is available for download as ready-to-use packages or installers for various platforms, as well as a source code archive if you want to build it ...

https://www.postgresql.org

PostgreSQL 9.6 Download (Free) - pgAdmin3.exe

2024年4月28日 — PostgreSQL version 9.6 (pgAdmin3.exe). PostgreSQL is an open source object-relational database system, which uses and extends the SQL ...

https://postgresql.informer.co

PostgreSQL 9.6.1 (32-bit) Download

2016年10月27日 — Download PostgreSQL 9.6.1 (32-bit) for Windows PC from FileHorse. 100% Safe and Secure ✓ Free Download (32-bit/64-bit) Software Version.

https://www.filehorse.com

PostgreSQL Windows package by Postgres Professional

Postgres Professional has prepared the PostgreSQL distribution packages for Windows. The 32 bit version requires Windows XP SP3 or newer, the 64 bit one ...

https://postgrespro.com

PostgreSQL: File Browser

tar.bz2 | tar xpf - These two compressed archives contain 32 bit or 64 bit binaries, respectively, in addition to documentation which is common to both. The ...

https://www.postgresql.org