Windows使用命令行开启允许sql server远程连接
Windows使用命令行开启允许sql server远程连接:
EXEC sys.sp_configure N'remote access', N'1'
GO
RECONFIGURE WITH OVERRIDE
GO
Windows使用命令行开启允许sql server远程连接:
EXEC sys.sp_configure N'remote access', N'1'
GO
RECONFIGURE WITH OVERRIDE
GO