博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SQL Server: Enable xp_cmdshell using sp_configure
阅读量:4952 次
发布时间:2019-06-12

本文共 1151 字,大约阅读时间需要 3 分钟。

The xp_cmdshell option is a server configuration option that enables system administrators to control whether the xp_cmdshell extended stored procedure can be executed on a system.

---- To allow advanced options to be changed.EXEC sp_configure 'show advanced options', 1GO—- To update the currently configured value for advanced options.RECONFIGUREGO—- To enable the feature.EXEC sp_configure 'xp_cmdshell', 1GO—- To update the currently configured value for this feature.RECONFIGUREGO

Now you can execute cmd script by using xm_cmdshell,

EXECUTE master..xp_cmdshell 'C:\AAT_PDF_Thumbnail_Generator\test.bat'

-- this can execute a bat file

-- try this command to create a new directory

exec xp_cmdshell 'MD "d:\test2"'

 

Tips: if you get errors like this:

Msg 15123, Level 16, State 1, Procedure sp_configure, Line 50

The configuration option 'xp_cmdshell' does not exist, or it may be an advanced option.

This is bcs of the advanced options are turn off. you can use this statement to turn on the advanced options:

EXEC sp_configure 'show advanced options', 1 GO RECONFIGURE WITH OVERRIDE

转载于:https://www.cnblogs.com/aot/archive/2013/03/29/2988864.html

你可能感兴趣的文章
初学差分约束
查看>>
HEVC编码学习(一)HM配置
查看>>
通过Spark SQL关联查询两个HDFS上的文件操作
查看>>
DataTable和 DataRow的 区别与联系
查看>>
检索COM 类工厂中CLSID 为 {00024500-0000-0000-C000-000000000046}的组件时失败
查看>>
mysql数据库中数据类型
查看>>
python-实现生产者消费者模型
查看>>
APP网络优化篇
查看>>
算法18-----判断是否存在符合条件的元素【list】
查看>>
《刑法》关于拐卖妇女儿童犯罪的规定
查看>>
Windows的本地时间(LocalTime)、系统时间(SystemTime)、格林威治时间(UTC-Time)、文件时间(FileTime)之间的转换...
查看>>
alias重启后失效了
查看>>
RestTemplate的Object与Entity的区别
查看>>
Fireworks基本使用
查看>>
c#线程学习笔记一---基本概念
查看>>
2018-4-13
查看>>
两台电脑间的消息传输
查看>>
Linux 标准 I/O 库
查看>>
Spring Data JPA教程, 第八部分:Adding Functionality to a Repository (未翻译)
查看>>
教练技术的小应用
查看>>