sql server synonym

Solutions on MaxInterview for sql server synonym by the best coders in the world

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
showing results for - "sql server synonym"
Benjamín
02 Jan 2019
1CREATE SYNONYM <synonym_name, sysname, sample_synonym>
2  FOR <schema_name, sysname, Production>.<object_name, sysname, Product>
3GO
4
5CREATE SYNONYM MyProductCatalog FOR [Azuredemodatabase].[SalesLT].[Product]
6
7SELECT * FROM MyProductCatalog;