Multiple choice technology databases

What are the data base objects for which you can create synonyms?

  1. Table

  2. View

  3. Procedure

  4. Package

  5. Another Synonym

  6. Sequence

Reveal answer Fill a bubble to check yourself
A,B,C,D,E,F Correct answer
Explanation

Oracle allows creating synonyms for most database objects including tables, views, procedures, packages, sequences, and even other synonyms. This provides a flexible naming mechanism that can simplify references to objects with long names or complex schema paths. Synonyms cannot be created for all object types like indexes or triggers, but the listed options are all valid synonym targets. This capability is particularly useful for creating cleaner, more maintainable SQL code.