Windows使用命令行开启允许sql server远程连接

作者: 吴杰 分类: 编程 发布时间: 2017-01-06 16:12

Windows使用命令行开启允许sql server远程连接:

EXEC sys.sp_configure N'remote access', N'1'
GO
RECONFIGURE WITH OVERRIDE
GO