What is a public synonym?
Answer / basanti
Synonym is an alias for a object of a database.
It can be created for TABLE or VIEW.
There are two type of synonym PRIVATE and PUBLIC.
public synonym is created by a keyword public.
public synonym is accessible to any schema in the database.
Syntax to create public synonym:
CREATE PUBLIC SYNONYM synonym_name FOR object_name;
| Is This Answer Correct ? | 0 Yes | 0 No |
One Table having two rows with one colomn having values Like"Male" and "Female". how to upadte these values Like "Female" and "Male" in single update statement.
What is a user account in oracle?
How to create a stored function in oracle?
where we have to use ON clause and where we have to use USING clause in JOINS
What is private procedure oracle?
How to resolve name conflicts between variables and columns?
What is Public Database Link ?
what is the syntax of SELECT command?
How to store pictures on to the database?
What is Reduced List of Values?
Is oracle a programming language?
I need to get the values of the previous quarter.how to do this?eg: if my cuurent month is may i need to get the datas of the month jan,feb,march.Can it be done in oracle.I tried with date function q but for the month jan its not retriving the previous quarter(oct-dec).how to solve this.plpz anyone help me?