Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

PostgreSQL 7.3. is released ! :-) 2

Status
Not open for further replies.

Bouchon

Programmer
Jun 20, 2002
2
0
0
BE
Hello,

Here's an extract of a message from the muc.list.postgres.questions newsgroups.

The PostgreSQL Global Development Group proudly announces the release of version 7.3 of the PostgreSQL object-relational database management system (ORDBMS).

PostgreSQL, the world's most advanced open source database, provides solutions for many of the most demanding applications in use today, saving businesses and governments millions of dollars each year.

You can download PostgreSQL 7.3 by going to (Note that RPM should be available in a few days).
 
Yes, and it's a power user's dream. Look at the new features:

Schemas
Schemas allow users to create objects in separate namespaces, so two people or applications can have tables with the same name. There is also a public schema for shared tables. Table/index creation can be restricted by removing permissions on the public schema.

Drop Column
PostgreSQL now supports the ALTER TABLE ... DROP COLUMN functionality. (One of the few annoyances in former versions)

Table Functions
Functions returning multiple rows and/or multiple columns are now much easier to use than before. You can call such a "table function" in the SELECT FROM clause, treating its output like a table. Also, PL/pgSQL functions can now return sets.

Prepared Queries
PostgreSQL now supports prepared queries, for improved performance.

Dependency Tracking
PostgreSQL now records object dependencies, which allows improvements in many areas. "DROP" statements now take either CASCADE or RESTRICT to control whether dependent objects are also dropped.

Privileges
Functions and procedural languages now have privileges, and functions can be defined to run with the privileges of their
creator.

Internationalization
Both multibyte and locale support are now always enabled.

Logging
A variety of logging options have been enhanced.

Interfaces
A large number of interfaces have been moved to where they can be developed and
released independently.

Functions/Identifiers
By default, functions can now take up to 32 parameters, and identifiers can be up to 63 bytes long. Also, OPAQUE is now deprecated: there are specific "pseudo-datatypes" to represent each of the former meanings of OPAQUE in function argument and result types.

Several steps closer to being an Oracle-killer ;-). -------------------------------------------

Big Brother: "War is Peace" -- Big Business: "Suspicion is Trust"
(
 
This is excellent news! Thanks for the posts! I recall I had a big gripe with the lack of DROP COLUMN!

:)

Gary
gwinn7
A+, Network+
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top