How can i hide a particular table name of our schema ?

 Posted by Bharathi Cherukuri on 4/23/2012 | Category: Sql Server Interview questions | Views: 3254 | Points: 40
Answer:

You can hide the table name of your schema by creating synonyms.

Example:

you can create a synonym y for table x

create synonym y for x;


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response