What is the use of SYNONYM?

后端 未结 7 643
长情又很酷
长情又很酷 2020-12-04 17:50

What is the use of SYNONYM in SQL Server 2008?

相关标签:
7条回答
  • 2020-12-04 18:20

    A synonym is a database object that serves the following purposes:

    • Provides an alternative name for another database object, referred to as the base object, that can exist on a local or remote server.
    • Provides a layer of abstraction that protects a client application from changes made to the name or location of the base object.

    Have never required the first one but the second issue is rather helpful.

    msdn is your friend

    0 讨论(0)
提交回复
热议问题