SQL Server select * from sp_who的解决方案
2022-11-12 09:47:45
内容摘要
这篇文章主要为大家详细介绍了SQL Server select * from sp_who的解决方案,具有一定的参考价值,可以用来参考一下。
对此感兴趣的朋友,看看idc笔记做的技术笔记!方法一:使用临时
文章正文
这篇文章主要为大家详细介绍了SQL Server select * from sp_who的解决方案,具有一定的参考价值,可以用来参考一下。
对此感兴趣的朋友,看看idc笔记做的技术笔记!
方法一:使用临时表。首先创建一个与sp_who相同字段的临时,然后用insert into 方法赋值,这样就可以select这个临时表了。具体代码如下:create table #TempTable(spid int,ecid int,status varchar(32),loginname varchar(32),hostname varchar(32),blk int,dbname varchar(32),cmd varchar(32),request_id int);insert into #TempTableexec sp_who;select * from #TempTable where [dbname] = 'master';drop table #TempTable方法二:使用OPENROWSET代码如下:select * from openrowset('SQLOLEDB','servername';'userName';'password','sp_who') where [dbname] = 'master';执行上面这个语句,如果提示:SQL Server 阻止了对组件 'Ad Hoc Distributed Queries' 的 STATEMENT'OpenRowset/OpenDatasource' 的访问,因为此组件已作为此服务器安全配置的一部分而被关闭。系统管理员可以通过使用 sp_configure 启用 'Ad Hoc Distributed Queries'。有关启用 'Ad Hoc Distributed Queries' 的详细信息。说明你没有配置 'Ad Hoc Distributed Queries' ,按如下方法配置启用Ad Hoc Distributed Queries:exec sp_configure 'show advanced options',1reconfigureexec sp_configure 'Ad Hoc Distributed Queries',1reconfigure然后就可以运行上面的代码了。使用完成后,如果想关闭Ad Hoc Distributed Queries,执行如下代码:exec sp_configure 'Ad Hoc Distributed Queries',0reconfigureexec sp_configure 'show advanced options',0reconfigure注:关于SQL Server select * from sp_who的解决方案的内容就先介绍到这里,更多相关文章的可以留意
代码注释