当前位置:Gxlcms > mysql > turnon'xp_cmdshell'

turnon'xp_cmdshell'

时间:2021-07-01 10:21:17 帮助过:24人阅读

SQLServerblockedaccesstoproceduresys.xp_cmdshellofcomponentxp_cmdshellbecausethiscomponentisturnedoffaspartofthesecurityconfigurationforthisserver.Asystemadministratorcanenabletheuseofxp_cmdshellbyusingsp_configure. Refer:http://msdn.micros

SQL Server blocked access to procedure 'sys.xp_cmdshell' of component 'xp_cmdshell' because this component is turned off as part of the security configuration for this server. A system administrator can enable the use of 'xp_cmdshell' by using sp_configure.

Refer: http://msdn.microsoft.com/en-us/library/ms190693(SQL.90).aspx <无>

源码与演示:源码出处

use master
go
sp_configure 'show advanced options',1
reconfigure with override
go
sp_configure 'xp_cmdshell', 1
reconfigure with override
go

人气教程排行