Hi,
I have a team of programmer who are accessing database for development.
I have one table on which i want to restrict that no user can access it without the password. how it can be achieved.
Please refer these links for restricting access to Table.
http://stackoverflow.com/questions/7970611/restric-user-access-to-table-using-sql-server-2008
http://msdn.microsoft.com/en-us/library/ms173724.aspx
USE AdventureWorks2012; DENY SELECT ON OBJECT::Person.Address TO RosaQdM; GO
http://stackoverflow.com/questions/5623519/sql-server-permission-on-a-per-table-basis
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.