我想知道为什么下面的语句不起作用:
insert into #temp (ip, ping) values ('ip', exec xp_cmdshell 'ping ip')
我想获得结果集,其中我将在一列中有 IP 地址并从该服务器 ping。上面的查询返回错误:
Msg 156, Level 15, State 1, Line 1
Incorrect syntax near the keyword 'exec'.
Msg 102, Level 15, State 1, Line 1
Incorrect syntax near ')'.
提前感谢您的解释。