Skip site navigation (1) Skip section navigation (2)

Peripheral Links

Header And Logo

PostgreSQL
| The world's most advanced open source database.

Site Navigation

Search for
  Advanced Search

CREATE SYNONYM ...



this patch implements CREATE SYNONYM

syntax:

  CREATE SYNONYM [TABLE | INDEX | SEQUENCE | VIEW] synname ON orgname;

  CREATE SYNONYM FUNCTION synname ON funcname(arg, arg, ...);

  DROP SYNONYM [TABLE | INDEX | SEQUENCE | VIEW] synname;

  DROP SYNONYM FUNCTION synname(arg, arg, ...);


for details about synonyms see pg_synonym table.
The synonym is just like a unix hardlink.
Every user who has CREATE rights can create a synonym.

This feature is especially important to people who want to port from Oracle to PostgreSQL (almost every customer who ports larger Oracle applications will asked for it).

Documentation will be submitted this week.
The patch applies without error against 8.1.3.

	Many thanks and best regards,

		Hans

--
Cybertec Geschwinde & Schönig GmbH
Schöngrabern 134; A-2020 Hollabrunn
Tel: +43/1/205 10 35 / 340
www.postgresql.at, www.cybertec.at

Attachment: postgresql-8.1.3-synonym-03032006.patch.gz
Description: GNU Zip compressed data



Home | Main Index | Thread Index

Privacy Policy | PostgreSQL Archives hosted by Command Prompt, Inc. | Designed by tinysofa
Copyright © 1996 – 2007 PostgreSQL Global Development Group