Synonym - Oracle DB
Overview of Synonyms
A synonym is an alias for any table, view, materialized view, sequence, procedure, function, package, type, Java class schema object, user-defined object type, or another synonym. Because a synonym is simply an alias, it requires no storage other than its definition in the data dictionary.
Synonyms are often used for security and convenience. For example, they can do the following:
- Mask the name and owner of an object
- Provide location transparency for remote objects of a distributed database
- Simplify SQL statements for database users
- Enable restricted access similar to specialized views when exercising fine-grained access control
You can create both public and private synonyms. A public synonym is owned by the special user group named
PUBLIC
and every user in a database can access it. A private synonym is in the schema of a specific user who has control over its availability to others.
Synonyms are very useful in both distributed and nondistributed database environments because they hide the identity of the underlying object, including its location in a distributed system. This is advantageous because if the underlying object must be renamed or moved, then only the synonym needs to be redefined. Applications based on the synonym continue to function without modification.
Synonyms can also simplify SQL statements for users in a distributed database system. The following example shows how and why public synonyms are often created by a database administrator to hide the identity of a base table and reduce the complexity of SQL statements. Assume the following:
- A table called
SALES_DATA
is in the schema owned by the userJWARD
. - The
SELECT
privilege for theSALES_DATA
table is granted toPUBLIC
.
At this point, you have to query the table
SALES_DATA
with a SQL statement similar to the following:SELECT * FROM jward.sales_data;
Notice how you must include both the schema that contains the table along with the table name to perform the query.
Assume that the database administrator creates a public synonym with the following SQL statement:
CREATE PUBLIC SYNONYM sales FOR jward.sales_data;
After the public synonym is created, you can query the table
SALES_DATA
with a simple SQL statement:SELECT * FROM sales;
Notice that the public synonym
SALES
hides the name of the table SALES_DATA
and the name of the schema that contains the table.
Ref: http://docs.oracle.com/cd/B19306_01/server.102/b14220/schema.htm#CNCPT711
---------------------------------------------------------------------------------------
CREATE SYNONYM
Use the
CREATE
SYNONYM
statement to create a synonym, which is an alternative name for a table, view, sequence, procedure, stored function, package, materialized view, Java class schema object, user-defined object type, or another synonym.
Synonyms provide both data independence and location transparency. Synonyms permit applications to function without modification regardless of which user owns the table or view and regardless of which database holds the table or view. However, synonyms are not a substitute for privileges on database objects. Appropriate privileges must be granted to a user before the user can use the synonym.
You can refer to synonyms in the following DML statements:
SELECT
, INSERT
, UPDATE
, DELETE
, FLASHBACK
TABLE
, EXPLAIN
PLAN
, and LOCK
TABLE
.
You can refer to synonyms in the following DDL statements:
AUDIT
, NOAUDIT
, GRANT
, REVOKE
, and COMMENT
.
Prerequisites
To create a private synonym in your own schema, you must have the
CREATE
SYNONYM
system privilege.
To create a private synonym in another user's schema, you must have the
CREATE
ANY
SYNONYM
system privilege.
To create a
PUBLIC
synonym, you must have the CREATE
PUBLIC
SYNONYM
system privilege.
Specify
OR
REPLACE
to re-create the synonym if it already exists. Use this clause to change the definition of an existing synonym without first dropping it.
Restriction on Replacing a Synonym You cannot use the
OR
REPLACE
clause for a type synonym that has any dependent tables or dependent valid user-defined object types.
Specify
PUBLIC
to create a public synonym. Public synonyms are accessible to all users. However each user must have appropriate privileges on the underlying object in order to use the synonym.
When resolving references to an object, Oracle Database uses a public synonym only if the object is not prefaced by a schema and is not followed by a database link.
If you omit this clause, then the synonym is private and is accessible only within its schema. A private synonym name must be unique in its schema.
- If you create a public synonym and it subsequently has dependent tables or dependent valid user-defined object types, then you cannot create another database object of the same name as the synonym in the same schema as the dependent objects.
- Take care not to create a public synonym with the same name as an existing schema. If you do so, then all PL/SQL units that use that name will be invalidated.
Specify the schema to contain the synonym. If you omit
schema
, then Oracle Database creates the synonym in your own schema. You cannot specify a schema for the synonym if you have specified PUBLIC
.
Specify the name of the synonym to be created.
Note:
Synonyms longer than 30 bytes can be created and dropped. However, unless they represent a Java name they will not work in any other SQL command. Names longer than 30 bytes are transformed into an obscure shorter string for storage in the data dictionary.
FOR Clause
Specify the object for which the synonym is created. The schema object for which you are creating the synonym can be of the following types:
- Table or object table
- View or object view
- Sequence
- Stored procedure, function, or package
- Materialized view
- Java class schema object
- User-defined object type
- Synonym
The schema object need not currently exist and you need not have privileges to access the object.
schema Specify the schema in which the object resides. If you do not qualify object with
schema
, then the database assumes that the schema object is in your own schema.
If you are creating a synonym for a procedure or function on a remote database, then you must specify
schema
in this CREATE
statement. Alternatively, you can create a local public synonym on the database where the object resides. However, the database link must then be included in all subsequent calls to the procedure or function.
dblink You can specify a complete or partial database link to create a synonym for a schema object on a remote database where the object is located. If you specify
dblink
and omit schema
, then the synonym refers to an object in the schema specified by the database link. Oracle recommends that you specify the schema containing the object in the remote database.
If you omit
dblink
, then Oracle Database assumes the object is located on the local database.
Examples
CREATE SYNONYM: Examples To define the synonym
offices
for the table locations
in the schema hr
, issue the following statement:CREATE SYNONYM offices FOR hr.locations;
To create a
PUBLIC
synonym for the employees
table in the schema hr
on the remote
database, you could issue the following statement:CREATE PUBLIC SYNONYM emp_table FOR hr.employees@remote.us.oracle.com;
A synonym may have the same name as the underlying object, provided the underlying object is contained in another schema.
Oracle Database Resolution of Synonyms: Example Oracle Database attempts to resolve references to objects at the schema level before resolving them at the
PUBLIC
synonym level. For example, the schemas oe
and sh
both contain tables named customers
. In the next example, user SYSTEM
creates a PUBLIC
synonym named customers
foroe.customers
:CREATE PUBLIC SYNONYM customers FOR oe.customers;
If the user
sh
then issues the following statement, then the database returns the count of rows from sh.customers
:SELECT COUNT(*) FROM customers;
To retrieve the count of rows from
oe.customers
, the user sh
must preface customers
with the schema name. (The user sh
must have select permission on oe.customers
as well.)SELECT COUNT(*) FROM oe.customers;
If the user
hr
's schema does not contain an object named customers
, and if hr
has select permission on oe.customers
, then hr
can access thecustomers
table in oe
's schema by using the public synonym customers
:SELECT COUNT(*) FROM customers;
Comments
Post a Comment