当前位置:Gxlcms > 数据库问题 > 开启/禁用SQL数据库的guest用户

开启/禁用SQL数据库的guest用户

时间:2021-07-01 10:21:17 帮助过:23人阅读

--开启guest用户“授予连接”
USE [Fly2017]
GO
grant connect to guest;  

--禁用guest用户“拒绝连接”
USE [Fly2017]
GO
deny connect to guest;


本文出自 “天涯浪人” 博客,请务必保留此出处http://gongxi.blog.51cto.com/4691965/1908052

开启/禁用SQL数据库的guest用户

标签:用户   sql数据库   

人气教程排行