zl程序教程

您现在的位置是:首页 >  后端

当前栏目

重置SQL Server连接池

serverSQL 连接池 重置
2023-09-27 14:27:41 时间
EXEC sp_configure 'show advanced options', 1
GO
-- To update the currently configured value for advanced options.
RECONFIGURE
GO
-- To enable the feature.
EXEC sp_configure 'xp_cmdshell', 1
GO
-- To update the currently configured value for this feature.
RECONFIGURE
GO