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
Towards the innovative SQL ideas
USE yourDataBaseName GO REVOKE CONNECT FROM GUEST; GO
Comments
Post a Comment