SQL server的xp_cmdshell未开启导致K3无法新建帐套问题

  • 格式:doc
  • 大小:372.50 KB
  • 文档页数:2

EXEC sp_configure 'show advanced options', 1
GO
-- To update the currently configured value for advanced options.
RECONFIGURE with override
GO
-- To enable the feature.
EXEC sp_configure 'xp_cmdshell', 1
GO
-- To update the currently configured value for this feature.
RECONFIGURE with override
GO

Xp_cmdshell开启之后成功的新建了帐套。