sql server发起http方法[OLE]
2023-04-13 本文已影响0人
吉凶以情迁
首先需要开启sp_configure
sp_configure 'show advanced options', 1;
go
RECONFIGURE;
go
sp_configure 'Ole Automation Procedures', 1;
go
RECONFIGURE;
go
EXEC sp_configure 'Ole Automation Procedures';
go