Create a synonym in Oracle
Simplify the way you use Oracle objects by creating synonyms. For example, to avoid prefixing with the schema.
create synonym new_name for schema.old_name
So simple.
Simplify the way you use Oracle objects by creating synonyms. For example, to avoid prefixing with the schema.
create synonym new_name for schema.old_name
So simple.