SQL Server 定时访问url激活数据同步示例

栏目: 数据库 · SQL Server · 发布时间: 7年前

内容简介:这篇文章主要介绍的是SQL Server 定时访问url激活数据同步的具体实现,需要的朋友可以参考下

创建作业,执行以下命令 

exec master..XP_cmdshell 'http://srm.rapoo.cn?op=sapintferace&i=1&t=1' 

激活执行同步网步 

以下内容来自网络,介绍如何启用 xp_cmdshell 扩展存储过程将命令 

一、简介 

xp_cmdshell 扩展存储过程将命令字符串作为操作系统命令 shell 执行,并以文本行的形式返回所有输出。 

三、SQL Server 2005中的xp_cmdshell 

由于存在安全隐患,所以在SQL Server 2005中, xp_cmdshell 默认是关闭的。 

此时,如果执行 xp_cmdshell 将会提示服务未开启: 

exec xp_cmdshell 'dir c:/' 

消息 15281,级别 16,状态 1,过程 xp_cmdshell,第 1 行 

SQL Server 阻止了对组件 'xp_cmdshell' 的 过程'sys.xp_cmdshell' 的访问,因为此组件已作为此服务器安全配置的一部分而被关闭。系统管理员可以通过使用 sp_configure 启用 'xp_cmdshell'。有关启用 'xp_cmdshell' 的详细信息,请参阅 SQL Server 联机丛书中的 "外围应用配置器"。 

四、开启xp_cmdshell 

EXEC sp_configure 'show advanced options', 1;RECONFIGURE;EXEC sp_configure 'xp_cmdshell', 1;RECONFIGURE; 

关闭一样.只是将上面的后面的那个"1"改成"0"就可以了. 

EXEC sp_configure 'show advanced options', 1;RECONFIGURE;EXEC sp_configure 'xp_cmdshell', 0;RECONFIGURE; 

未能找到存储过程 'master..xp_cmdshell' 

第一步执行:EXEC sp_addextendedproc xp_cmdshell,@dllname ='xplog70.dll'declare @o int 

第二步执行:sp_addextendedproc 'xp_cmdshell','xpsql70.dll'


以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

SCWCD Exam Study Kit Second Edition

SCWCD Exam Study Kit Second Edition

Hanumant Deshmukh、Jignesh Malavia、Matthew Scarpino / Manning Publications / 2005-05-20 / USD 49.95

Aimed at helping Java developers, Servlet/JSP developers, and J2EE developers pass the Sun Certified Web Component Developer Exam (SCWCD 310-081), this study guide covers all aspects of the Servlet an......一起来看看 《SCWCD Exam Study Kit Second Edition》 这本书的介绍吧!

CSS 压缩/解压工具
CSS 压缩/解压工具

在线压缩/解压 CSS 代码

JSON 在线解析
JSON 在线解析

在线 JSON 格式化工具

HEX CMYK 转换工具
HEX CMYK 转换工具

HEX CMYK 互转工具