When I connect to my live SQL server database. Despite of giving the database it displays a long list of databases. I have to look up my database among these all databases.
Is there any way so that I can view only my database when connect to the server?
You need to get the
VIEW ANY DATABASEpermission revoked on the login you are using.I just tested setting up a new login called
barand runningDENY VIEW ANY DATABASE TO bar;but that failed with the messageSo you will need to get the sysadmin to do this.