开发者

Adding Windows account to SQL Server

开发者 https://www.devze.com 2022-12-13 19:43 出处:网络
I need to add the window 开发者_开发百科controllerservices account to the SQL server and give it right to start and stop trace. Can some body please let me know how can this be done. I would really ap

I need to add the window 开发者_开发百科controllerservices account to the SQL server and give it right to start and stop trace. Can some body please let me know how can this be done. I would really appreciate it.

Thanks


CREATE LOGIN [domain\account] FROM WINDOWS;
GRANT ALTER TRACE TO [domain\account];
0

精彩评论

暂无评论...
验证码 换一张
取 消