如何将 cmd 查询输出到 SQL 服务器数据库?

How to get cmd query output to SQL Server Database?

我正在尝试使用

Netstat计数 cmd
netstat -anp tcp | find "80" /c

我的问题是,如何在 MS SQL Server 数据库中更新该计数?

我会将该计数导出到一个文件,例如.txt。但是我怎样才能将文件数据导出到SQL Server.

xp_cmdshell怎么样:

declare @tbl table (output int)
insert into @tbl (output)
exec master..xp_cmdshell 'netstat -anp tcp | find "80" /c'
select * from @tbl where output is not null

Returns(例如):

output
15