About 234,000 results
Open links in new tab
  1. Oracle / PLSQL: Synonyms - TechOnTheNet

    This Oracle tutorial explains how to create and drop synonyms in Oracle with syntax and examples. A synonym is an alternative name for objects such as tables, views, sequences, stored procedures, …

  2. CREATE SYNONYM - Oracle Help Center

    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.

  3. Find all the user defined public synonyms in a database

    Feb 19, 2019 · There's no OWNER in USER_SYNONYMS, @Kaushik (but there is in ALL_SYNONYMS, if you meant that).

  4. Oracle Synonym

    Synonyms can be public or private. A public synonym is accessible to every user in a database and owned by a specified group named PUBLIC while a private synonym is stored a specific schema …

  5. PL/SQL Synonym – Oracle PL/SQL Tutorial

    A public synonym is available to all users, while a private synonym is only available to the user who created it. Synonyms are created with the CREATE SYNONYM statement.

  6. Creating and Managing Synonyms in Oracle

    Now if you create a public synonym on it then other users don’t have to qualify the function name with owner’s name. To define a public synonym give the following command.

  7. How to correctly make a public synonym - Stack Overflow

    Jan 25, 2012 · I tried to make a public synonym by issuing the command: CREATE OR REPLACE PUBLIC.

  8. Oracle Synonym - SQLS*Plus

    Aug 17, 2020 · 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 …

  9. Oracle CREATE SYNONYM Statement

    Learn how to use the Oracle CREATE SYNONYM statement to create an alternative name for a database object such as a table, view, sequence, and procedure.

  10. Get names of all synonyms from Oracle database - Oracle PL/SQL

    ALL_SYNONYMS: This view contains information about all the synonyms that are accessible to the current user. It includes synonyms created by the user, as well as synonyms created by other users …