Oracle Synonym

What is a Synonym in Oracle?

Questions by ccp3170

Showing Answers 1 - 6 of 6 Answers

Payal Shah

  • Sep 5th, 2011
 

Synonum is a alias of the table..

  Was this answer useful?  Yes

Hi,

In oracle use SYNONYM as a temporary name of the object ( Table, view, index etc.)

Code
  1.  

  2.   CREATE SYNONYM synonym_name FOR table_name

  3.  

  4. You CREATE PUBLIC SYNONYM WITH the PUBLIC keywrd

  5.  

  6.  

  7. CREATE PUBLIC SYNONYM synonym_name FOR table_name

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions