Hi,
I am running SQL Profiler for one of my server.
But when I m giving the server name to connect, i am getting the error
as:
" In order to run a trace against SQL Server you must be a member of
sysadmin fixed server role or have the ALTER TRACE permission."
Pls help.
John Bell - 16 Jul 2008 07:45 GMT
> Hi,
> I am running SQL Profiler for one of my server.
[quoted text clipped - 5 lines]
>
> Pls help.
Hi
It sounds like you don't have the permissions. I assume you are not a
sysadmin on this server? You will need to be granted the ALTER TRACE
permission to your login e.g
GRANT ALTER TRACE TO TEST
John