sql-server – 从XP_CMDSHELL获取结果

前端之家收集整理的这篇文章主要介绍了sql-server – 从XP_CMDSHELL获取结果前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我一直在搜索网页,似乎只有获取XP_CMDSHELL的结果才能将它们存储到临时表中.真的没有办法吗?

专家交流:

No,xp_cmdshell will not return any information from the exe. and you have to use the following
Syntax if you are not in the master database to run it. master..xp_cmdshell. You will have to
give your user permission to execute this procedure in the master database. You will have to have
your exe insert the information its self because it can not return information to the process that
called it.

和…

虽然@result仅从xp_cmdshell获取返回值,但您可能可以捕获结果
的命令直接插入到表中…这样的东西:

因人而异…

set nocount on
declare  @filepath   varchar(255),@cmd        varchar(255),@rc         int

select   @filepath = 'c:\temp\'         
select   @cmd      = 'dir ' + @filepath + '~*.tmp'

create table #output (output varchar(255) null)
insert #output exec @rc = master..xp_cmdshell @cmd
select * from #output where output is not null
drop table #output

解决方法

从xp_cmdshell捕获STDOUT / STDERR反馈没有更简单的方法;至少有一个选择,但是它不能被分类为更容易:
可以将命令的输出重定向到文本文件作为命令的一部分,然后使用OPENROWSET读取文本文件.

在上面发布的脚本中至少有一个错误. xp_cmdshell的文档表示它将命令输出返回为nvarchar(255).
此外,临时表应该有一个标识列,否则结果可能不会按正确的顺序显示

...
create table #output (id int identity(1,1),output nvarchar(255) null)
insert #output (output) exec @rc = master..xp_cmdshell @cmd
select * from #output where output is not null order by id
drop table #output
原文链接:https://www.f2er.com/mssql/81024.html

猜你在找的MsSQL相关文章