Members Area


Recommended Sites:

Related Keywords
development freeware download
self-development freeware download
php development freeware download
rad development freeware download
.net development freeware download
ivr development freeware download
development kit freeware download
pdf development freeware download
self development freeware download
web development freeware download
c++ development freeware download
c development freeware download
development platform freeware download
baby's development freeware download
actionscript development freeware download
openoffice development freeware download
android development freeware download
development plugin freeware download
native development kit freeware download
bada development freeware download

Top Freeware Keywords
csv freeware download
oracle freeware download
excel freeware download
database freeware download
odbc freeware download
report freeware download
mysql freeware download
export freeware download
windows freeware download
query freeware download
html freeware download
data freeware download
client freeware download
asahi freeware download
sql server freeware download
file freeware download
table freeware download
import freeware download
sql freeware download
management freeware download
free freeware download
tool freeware download
gui freeware download
development freeware download
administration freeware download
java freeware download
script freeware download
web freeware download
security freeware download
php freeware download



PostgreSQL 9.1.3-1 freeware     Save this freeware to your freeware selection - Saved Freeware


Author

PostgreSQL Global Development

OS Windows2000, Windows2003, WinXP, Windows Vista, Windows Vista x64, Windows 7, Windows 7 x64, Linux, Mac OS X
Date Released February 27, 2012
Downloads 1241
Filesize 46.00 MB
Keywords relational database, database manager, query planner, relational, database, manager, Postgre SQL
Your Rating
  - click to rate - you will be first!
PostgreSQL screenshot
[ View full size screenshot ]

Download PostgreSQL   Save Freeware   Report Spyware

PostgreSQL has more than 15 years of active development and a proven architecture that has earned it a strong reputation for reliability, data integrity, and correctness.

PostgreSQL runs on all major operating systems, including Linux, UNIX (AIX, BSD, HP-UX, SGI IRIX, Mac OS X, Solaris, Tru64), and Windows. ...

Download PostgreSQL   Save Freeware   Report Spyware


Net development - PostgreSQL freeware - Download Notice

PostgreSQL Free Download - we do not host any PostgreSQL torrent files or links of PostgreSQL on rapidshare.com, depositfiles.com, megaupload.com etc. All PostgreSQL download links are direct PostgreSQL full download from publisher site or their selected mirrors.

Net development - PostgreSQL freeware - Latest User Reviews

 Write a Review   


Net development - PostgreSQL freeware - The Latest Versions History

Version Date Released Status Release Notes
9.1.3-1 Feb 27, 2012 New Release #Require execute permission on the trigger function for CREATE TRIGGER (Robert Haas)

This missing check could allow another user to execute a trigger function with forged input data, by installing it on a table he owns. This is only of significance for trigger functions marked SECURITY DEFINER, since otherwise trigger functions run as the table owner anyway. (CVE-2012-0866)
#Remove arbitrary limitation on length of common name in SSL certificates (Heikki Linnakangas)

Both libpq and the server truncated the common name extracted from an SSL certificate at 32 bytes. Normally this would cause nothing worse than an unexpected verification failure, but there are some rather-implausible scenarios in which it might allow one certificate holder to impersonate another. The victim would have to have a common name exactly 32 bytes long, and the attacker would have to persuade a trusted CA to issue a certificate in which the common name has that string as a prefix.
9.1.2-1 Dec 6, 2011 New Release · Fix bugs in information_schema.referential_constraints view (Tom Lane). This view was being insufficiently careful about matching the foreign-key constraint to the depended-on primary or unique key constraint. That could result in failure to show a foreign key constraint at all, or showing it multiple times, or claiming that it depends on a different constraint than the one it really does. Since the view definition is installed by initdb, merely upgrading will not fix the problem. If you need to fix this in an existing installation, you can (as a superuser) drop the information_schema schema then re-create it by sourcing SHAREDIR/information_schema.sql. (Run pg_config --sharedir if you're uncertain where SHAREDIR is.) This must be repeated in each database to be fixed.

· Make contrib/citext's upgrade script fix collations of citext columns and indexes (Tom Lane). Existing citext columns.
9.1.1-1 Sep 26, 2011 New Release · Make pg_options_to_table return NULL for an option with no value
· Previously such cases would result in a server crash.
· Fix memory leak at end of a GiST index scan
· Commands that perform many separate GiST index scans, such as verification of a new GiST-based exclusion constraint on a table already containing many rows, could transiently require large amounts of memory due to this leak.
· Fix explicit reference to pg_temp schema in CREATE TEMPORARY TABLE
9.1.0-1 Sep 13, 2011 New Release · Allow synchronous replication
· Add support for foreign tables
· Add per-column collation support
· Add extensions which simplify packaging of additions to PostgreSQL
· Add a true serializable isolation level
· Support unlogged tables using the UNLOGGED option in CREATE TABLE
· Allow data-modification commands (INSERT/UPDATE/DELETE) in WITH clauses
· Add nearest-neighbor (order-by-operator) searching to GiST indexes
· Add a SECURITY LABEL command and support for SELinux permissions control
· Update the PL/Python server-side language
9.0.4-1 Apr 18, 2011 New Release Changes:
· Force the default wal_sync_method to be fdatasync on Linux (Tom Lane, Marti Raudsepp)
· The default on Linux has actually been fdatasync for many years, but recent kernel changes caused PostgreSQL to choose open_datasync instead. This choice did not result in any performance improvement, and caused outright failures on certain filesystems, notably ext4 with the data=journal mount option.
· Fix "too many KnownAssignedXids" error during Hot Standby replay (Heikki Linnakangas)
· Fix race condition in lock acquisition during Hot Standby (Simon Riggs)
· Avoid unnecessary conflicts during Hot Standby (Simon Riggs)
· This fixes some cases where replay was considered to conflict with standby queries (causing delay of replay or possibly cancellation of the queries), but there was no real conflict.
· Fix assorted bugs in WAL replay logic for GIN indexes (Tom Lane)
· This could result in "bad buffer id: 0" failures or corruption of index contents during replication.
9.0.3-1 Jan 31, 2011 New Release Changes:
· Force the default wal_sync_method to be fdatasync on Linux (Tom Lane, Marti Raudsepp)
· The default on Linux has actually been fdatasync for many years, but recent kernel changes caused PostgreSQL to choose open_datasync instead. This choice did not result in any performance improvement, and caused outright failures on certain filesystems, notably ext4 with the data=journal mount option.
· Fix "too many KnownAssignedXids" error during Hot Standby replay (Heikki Linnakangas)
· Fix race condition in lock acquisition during Hot Standby (Simon Riggs)
· Avoid unnecessary conflicts during Hot Standby (Simon Riggs)
· This fixes some cases where replay was considered to conflict with standby queries (causing delay of replay or possibly cancellation of the queries), but there was no real conflict.
· Fix assorted bugs in WAL replay logic for GIN indexes (Tom Lane)
· This could result in "bad buffer id: 0" failures or corruption of index contents during replication.
9.0.2-1 Dec 18, 2010 New Release Changes:
· Force the default wal_sync_method to be fdatasync on Linux (Tom Lane, Marti Raudsepp)
· The default on Linux has actually been fdatasync for many years, but recent kernel changes caused PostgreSQL to choose open_datasync instead. This choice did not result in any performance improvement, and caused outright failures on certain filesystems, notably ext4 with the data=journal mount option.
· Fix "too many KnownAssignedXids" error during Hot Standby replay (Heikki Linnakangas)
· Fix race condition in lock acquisition during Hot Standby (Simon Riggs)
· Avoid unnecessary conflicts during Hot Standby (Simon Riggs)
· This fixes some cases where replay was considered to conflict with standby queries (causing delay of replay or possibly cancellation of the queries), but there was no real conflict.
· Fix assorted bugs in WAL replay logic for GIN indexes (Tom Lane)
· This could result in "bad buffer id: 0" failures or corruption of index contents during replication.
9.0.1-1 Oct 4, 2010 New Release Use a separate interpreter for each calling SQL userid in PL/Perl and PL/Tcl:
· This change prevents security problems that can be caused by subverting Perl or Tcl code that will be executed later in the same session under another SQL user identity (for example, within a SECURITY DEFINER function). Most scripting languages offer numerous ways that that might be done, such as redefining standard functions or operators called by the target function. Without this change, any SQL user with Perl or Tcl language usage rights can do essentially anything with the SQL privileges of the target function's owner.
· The cost of this change is that intentional communication among Perl and Tcl functions becomes more difficult. To provide an escape hatch, PL/PerlU and PL/TclU functions continue to use only one interpreter per session. This is not considered a security issue since all such functions execute at the trust level of a database superuser already.
8.4.4-1 May 17, 2010 New Release · Add new configuration parameter ssl_renegotiation_limit to control how often we do session key renegotiation for an SSL connection (Magnus)

· This can be set to zero to disable renegotiation completely, which may be required if a broken SSL library is used. In particular, some vendors are shipping stopgap patches for CVE-2009-3555 that cause renegotiation attempts to fail.
· Fix possible deadlock during backend startup (Tom)
· Fix possible crashes due to not handling errors during relcache reload cleanly (Tom)

· Fix possible crash due to use of dangling pointer to a cached plan (Tatsuo)
· Fix possible crash due to overenthusiastic invalidation of cached plan for ROLLBACK (Tom)
· Fix possible crashes when trying to recover from a failure in subtransaction start (Tom)
· Fix server memory leak associated with use of savepoints and a client encoding different from server's encoding (Tom)
8.4.3-1 Apr 27, 2010 New Release #Add new configuration parameter ssl_renegotiation_limit to control how often we do session key renegotiation for an SSL connection (Magnus)

This can be set to zero to disable renegotiation completely, which may be required if a broken SSL library is used. In particular, some vendors are shipping stopgap patches for CVE-2009-3555 that cause renegotiation attempts to fail.
#Fix possible deadlock during backend startup (Tom)
#Fix possible crashes due to not handling errors during relcache reload cleanly (Tom)
#Fix possible crash due to use of dangling pointer to a cached plan (Tatsuo)
#Fix possible crash due to overenthusiastic invalidation of cached plan for ROLLBACK (Tom)
#Fix possible crashes when trying to recover from a failure in subtransaction start (Tom)
#Fix server memory leak associated with use of savepoints and a client encoding different from server's encoding (Tom)


Most popular net development freeware downloads in Databases & Tools


TOAD for DB2 4.6.2.573 freeware download


TOAD for DB2 is a database development solution that provides productivity features/functions for rapidly creating ... of users, peers, and experts to help solve development issues and assist in developing applications and feedback for improving Quests products. All of this comes with the backing of Quest Software, a healthy and growing ...
Details   Download   Save Freeware

PostgreSQL 9.1.3-1 freeware download


... It has more than 15 years of active development and a proven architecture that has earned it a strong reputation for reliability, data integrity, and correctness. It runs on all major operating systems, including Linux, UNIX (AIX, BSD, HP-UX, SGI IRIX, Mac OS X, Solaris, Tru64), and Windows. ...
Details   Download   Save Freeware

Data Masking Suite 1.42 freeware download


... Mask and sanitize test data for outsourcing / development partner: Many companies outsource parts of their software development or testing activities. With Data Masking Suite you ... all data you need to provide your external development and testing partners with everything they need. b) ...
Details   Download   Save Freeware

Freeware - Navicat Lite for Windows (Cross-Database Admin Tools for MySQL, SQLite, SQL Server, Oracl 10.0.3 freeware download


... SQLite, SQL Server, Oracle and PostgreSQL administration and development. This is an all-inclusive database front end provides a powerful graphical interface for databases management and maintenance. Easy installation and intuitive interface make it an irreplaceable tool for MySQL, SQLite, SQL Server, Oracle and PostgreSQL on the web or your local ...
Details   Download   Save Freeware

5 stars award

Toad for MySQL 6.3 freeware download


Toad for MySQL empowers MySQL developers and administrators develop code more efficiently. It also provides utilities to compare, extract and search for objects, manage projects, import/export data and administer the database. Toad for MySQL increases developer productivity and offers access to a solid community of experts and peers for interactive support. ...
Details   Download   Save Freeware

SQLite Expert Personal 3.4.4 freeware download


... choice. It is a feature rich administration and development tool for SQLite. SQLite Expert is designed to answer the needs of all users, from writing simple SQL queries to developing complex databases. The graphical interface supports all SQLite features. It includes an SQL editor with syntax highlighting and code completion ...
Details   Download   Save Freeware

Toad for SQL Server 5.6 freeware download


The Toad Object Explorer allows you to effortlessly see objects from any database on a server instance and display detailed information for each object selected. The advanced data grid allows data entry or deletion, as well as the ability to filter, sort, or group the data to your specifications. Performing multiple ...
Details   Download   Save Freeware

AnySQL Maestro 11.7 freeware download


AnySQL Maestro is a unique FREEWARE for administering any database engine (SQL Server, Oracle, MySQL, MS Access, etc.) which is accessible via ODBC driver or OLE DB provider.The application provides you with easy-to-use GUI, which allows you to perform common database operations easy and fast. Key features include: Support of any ...
Details   Download   Save Freeware

dotConnect for PostgreSQL Express 5.10 freeware download


... connectivity solution built over ADO.NET architecture and a development framework with number of innovative technologies. It offers ... designing applications and boosts productivity of database application development. Key Features: * Direct access to PostgreSQL server ... for PostgreSQL supports Mono version 2.0 and above. Development environments: *Visual Studio 2008 *Visual Studio 2005 *Delphi ...
Details   Download   Save Freeware

Digital-Clay Solution Builder Kit 8.7.6 freeware download


... flexible solution for any enterprise-scale system. This high-powered development tool supports all the features required by enterprise level software including: High level security, automation of business workflows and rules, advanced analysis and business intelligence, data management and reporting, dashboards, graphs, various charts, document templates, mail merge, document management, data integrity ...
Details   Download   Save Freeware