To save some of you from SQL Server 2005 Books Online, this quick bit of SQL will enable xp_cmdshell to execute, if you don't want to use the SQL Server 2005 Surface Area Configuration tool.

Clearly you'll need sa privileges on your SQL instance to run this:

sp_configure 'show advanced options', 1
GO
RECONFIGURE
GO
sp_configure 'xp_cmdshell', 1
GO
RECONFIGURE
GO

相关文章:

  • 2021-05-19
  • 2021-09-10
  • 2022-12-23
  • 2021-09-08
  • 2021-11-11
  • 2021-11-29
  • 2021-12-08
  • 2022-01-22
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-06-11
  • 2022-12-23
  • 2021-08-23
  • 2021-08-08
  • 2021-06-08
相关资源
相似解决方案