Adding Windows account to SQL Server
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];
精彩评论