Preamble
In Oracle PLSQL Synonym is an alternative name for objects such as tables, views, sequences, stored procedures and other database objects.
Typically, you use synonyms when you provide access to an object from another schema, and you don’t want users to worry about which schema the object belongs to.
Create (or Replace) Synonym
You can create a synonym so that users do not use a table name prefix with the schema name when using a table in a query.
Syntax for creating Oracle/PLSQL synonyms
CREATE [OR REPLACE] [PUBLIC] SYNONYM [schema .] synonym_name
FOR [schema .] object_name [@ dblink];
OR REPLACE
Allows you to recreate a synonym (if it already exists), without having to issue the DROP synonym command.
- PUBLIC – This means that the synonym is public and available to all users. Remember that the user must first have the appropriate privileges for the synonym object.
- schema – The appropriate schema. If this phrase is omitted, Oracle assumes that you are referring to your own schema.
- object_name – The name of the object for which you are creating the synonym. It can be one of the following objects:
- table
- view
- sequence
- stored procedure
- function
- package
- materialized view
- java class schema object
- user-defined object
- synonym
Let’s consider an example of how to create a synonym in Oracle/PLSQL
CREATE PUBLIC SYNONYM suppliers
FOR app;
This first example of CREATE SYNONYM demonstrates how to create a synonym with the name. Now, users of other schemes can reference the table with suppliers without the prefix of the scheme name and table name.
SELECT *
FROM suppliers;
If this synonym already exists and you want to recreate it, you can use OR REPLACE as follows:
CREATE OR REPLACE PUBLIC SYNONYM suppliers
FOR app.suppliers;
Drop synonym
After the synonym was created in Oracle, you will need to remove it at some point.
drop synonym syntax in Oracle/PLSQL
DROP [PUBLIC] SYNONYM [schema .] synonym_name [force];
- PUBLIC – Allows you to remove the public synonym. If you specified a PUBLIC, you may not need to specify a schema.
- Force – This will force Oracle to remove the synonym, even if it has dependencies. This is probably not a good idea to use force, as it can invalidate Oracle objects.
Let us consider an example of how to remove synonym in Oracle/PLSQL
For example:
DROP PUBLIC SYNONYM;
The DROP operator will delete the synonym with the name of suppliers that we defined earlier.
About Enteros
Enteros offers a patented database performance management SaaS platform. It proactively identifies root causes of complex business-impacting database scalability and performance issues across a growing number of clouds, RDBMS, NoSQL, and machine learning database platforms.
The views expressed on this blog are those of the author and do not necessarily reflect the opinions of Enteros Inc. This blog may contain links to the content of third-party sites. By providing such links, Enteros Inc. does not adopt, guarantee, approve, or endorse the information, views, or products available on such sites.
Are you interested in writing for Enteros’ Blog? Please send us a pitch!
RELATED POSTS
Scaling Digital Banking with Confidence: AI SQL and Performance Intelligence by Enteros
- 5 February 2026
- Database Performance Management
Introduction Digital banking has moved from being a competitive differentiator to a baseline expectation. Customers now demand real-time payments, instant account access, personalized financial insights, always-on mobile experiences, and seamless digital onboarding—without delays, downtime, or friction. Behind these experiences lies an increasingly complex technology foundation. Core banking modernization, cloud-native digital platforms, open banking APIs, AI-powered … Continue reading “Scaling Digital Banking with Confidence: AI SQL and Performance Intelligence by Enteros”
Turning Database Performance into Revenue Intelligence: Enteros for US Financial Enterprises
Introduction In the US financial services market, technology performance is no longer just an IT concern—it is a direct driver of revenue, customer trust, and competitive advantage. Banks, fintechs, capital markets firms, insurers, and payments providers all operate in an environment defined by real-time transactions, digital-first customer expectations, regulatory scrutiny, and relentless pressure to improve … Continue reading “Turning Database Performance into Revenue Intelligence: Enteros for US Financial Enterprises”
AI Model–Powered Database Optimization for Real Estate: Performance Management and Cost Attribution with Enteros
- 4 February 2026
- Database Performance Management
Introduction The real estate sector is undergoing a profound digital transformation. Property management platforms, digital leasing systems, smart building technologies, tenant experience apps, AI-driven valuation models, ESG reporting tools, and real-time analytics now form the backbone of modern real estate enterprises. Behind every one of these systems lies a complex database ecosystem—supporting high transaction volumes, … Continue reading “AI Model–Powered Database Optimization for Real Estate: Performance Management and Cost Attribution with Enteros”
Accurate Cost Estimation for Telecom Databases: How Enteros Aligns AIOps and Performance Intelligence
Introduction Telecom organizations are operating at an unprecedented scale. 5G rollouts, digital service platforms, real-time billing systems, subscriber analytics, IoT connectivity, and AI-driven customer engagement have pushed data volumes and transaction complexity to new extremes. Yet while networks continue to modernize, database economics remain poorly understood. Most telecom leaders know their cloud bills are rising. … Continue reading “Accurate Cost Estimation for Telecom Databases: How Enteros Aligns AIOps and Performance Intelligence”