This is a generic database design question - What are the benefits of using a synonym in database development, over a simple view? What are the main considerations to keep in mind when choosing between the two?
|
1
|
|
|
|
|
|
They are different things. A synonym is an alias for the object directly, a view is a construct over one or more tables. Some reasons to use a view:
... Plus many more. Reasons to use a synonym:
... Plus many more. |
||
|
|
|
|
There are lots of considerations. In short, use the tool that works best for each situation. With a view, I can
With a synonym, I can:
There's probably more that can be done with synonyms. In the designs of our (Oracle database) applications, we use an "owner" schema (user) for all of the database objects (tables, views, triggers, etc.), and we grant privileges on those objects to other "app" users. In each of the "app" user schemas, we create synonyms to reference the "owner" objects. HTH |
||
|
|
|
|
A view primarily is a simple/complex "select" statement. Essentially you use a view as a mask, and show only those column values which are of use. You use a view with an intention to not show extra information to the end-user. Whereas a synonym is an alternative name for the database objects.
|
||
|
|
