如何授予用户访问SQL Server中的sys.master_files的权限? [英] How to give a user access to sys.master_files in SQL Server?

查看:290
本文介绍了如何授予用户访问SQL Server中的sys.master_files的权限?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要授予数据库用户对sys.master_files表的读取权限.我该怎么办?

I need to give a database user read access to the sys.master_files table. How can I do that?

当前用户拥有此权限:

sys.master_files上调用SELECT返回空结果.我还用sa用户测试了相同的查询,该查询按预期工作.

Calling SELECT on sys.master_files returns an empty result. I also tested the same query with the sa user which works as expected.

推荐答案

让您成功运行

select * from sys.master_files

您需要授予的最低权限如下:

the minimal permissions that you need to grant is as follows:

GRANT VIEW ANY DEFINITION TO [texas_user]
GO

我已经测试过,并且可以在sql 2008 r2上正常工作

I have tested and it works fine on sql 2008 r2

regards
marcelo

这篇关于如何授予用户访问SQL Server中的sys.master_files的权限?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆