我们网络中的一位用户需要访问sql server database
的一个表。由于它是Windows Authentication
,我在Security\Logins
中创建了用户,并在Security\Users
中为数据库添加了用户。我还添加了权限。
现在我想测试它。如果我没有此用户的密码,我该怎么办?显然,他不会把它给我。
感谢。
答案 0 :(得分:0)
Execute As User = 'domain\Name';
-- Perform the test - use a Transaction if you need to test data modifications
Select * From schema.table;
Revert