Synonyms v10
A synonym is an identifier that can be used to reference another database object in a SQL statement. A synonym is useful in cases where a database object would normally require full qualification by schema name to be properly referenced in a SQL statement. A synonym defined for that object simplifies the reference to a single, unqualified name.
Advanced Server supports synonyms for:
- tables
- views
- materialized views
- sequences
- procedures
- functions
- types
- objects that are accessible through a database link
- other synonyms
Neither the referenced schema or referenced object must exist at the time that you create the synonym; a synonym may refer to a non-existent object or schema. A synonym will become invalid if you drop the referenced object or schema. You must explicitly drop a synonym to remove it.
As with any other schema object, Advanced Server uses the search path to resolve unqualified synonym names. If you have two synonyms with the same name, an unqualified reference to a synonym will resolve to the first synonym with the given name in the search path. If public
is in your search path, you can refer to a synonym in that schema without qualifying that name.
When Advanced Server executes an SQL command, the privileges of the current user are checked against the synonym’s underlying database object; if the user does not have the proper permissions for that object, the SQL command will fail.
Deleting a Synonym
To delete a synonym, use the command, DROP SYNONYM
. The syntax is:
DROP [PUBLIC] SYNONYM [<schema>.] <syn_name>
Parameters:
syn_name
syn_name
is the name of the synonym. A synonym name must be unique within a schema.
schema
schema
specifies the name of the schema in which the synonym resides.
Like any other object that can be schema-qualified, you may have two synonyms with the same name in your search path. To disambiguate the name of the synonym that you are dropping, include a schema name. Unless a synonym is schema qualified in the DROP SYNONYM
command, Advanced Server deletes the first instance of the synonym it finds in your search path.
You can optionally include the PUBLIC
clause to drop a synonym that resides in the public
schema. Compatible with Oracle databases, the DROP PUBLIC SYNONYM
command drops a synonym that resides in the public
schema:
DROP PUBLIC SYNONYM <syn_name>;
The following example drops the synonym, personnel
:
DROP SYNONYM personnel;