Reputation: 267
I am having an issue on viewing the SQL Error logs on SSMS. I'm aware that I'm also able to view the error logs by going to the folder where the error logs are stored. I have tried verifying if my service account has permission to access the error log location (read/write). Also my service account is granted sysadmin in SSMS. Still I'm unable to view the SQL Error Logs in SSMS.
Upvotes: 1
Views: 3283
Reputation: 1
There are several service logins that should be checked.
NT Service\MSSQL<server or $instance name>
NT Service\MSSQLAgent<server or $instance name>
NT Service\SQLTelemetry<server or $instance name>
The first two are granted sysadmin privileges at installation. If these permissions didn't get set for some reason, SSMS will not show the SQL logs- No error message, just no logs. Same may apply to the account under which the SQL engine is running.
Upvotes: 0
Reputation: 4095
Upvotes: 1