Friday, 29 May 2015

Disable Guest User in all databases in SQL Server by serverku

As a database security, we should disable guest account from databases, You can do it with revoke access from that user.

USE yourDataBaseName
GO
REVOKE CONNECT FROM GUEST;
GO

No comments:

Post a Comment

Please Use Good Leanguage