游标小例

Posted 鱼日文弓虽

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了游标小例相关的知识,希望对你有一定的参考价值。

在多个数据库同时执行同一个sql语句

--声明游标
declare  name_cursor cursor scroll for select name from sys.databases 
where name not in (master,msdb,model,tempdb,ywmonitor)
--打开游标
open name_cursor
declare @dbname varchar(20)
--移动游标
fetch next from name_cursor into @dbname
while @@FETCH_STATUS =0
begin
print @dbname
exec sp_spaceused
--查看数据库的空间使用情况
--grant showplan to [xxxx] 
--开通从库xxxx用户的查看语句的执行计划的权限
--exec sp_helpdb @dbname
--查看数据库的信息
fetch next from name_cursor 
end
--关闭游标
close name_cursor
--释放游标
deallocate name_cursor

 

以上是关于游标小例的主要内容,如果未能解决你的问题,请参考以下文章

[aspx]控件及代码小例

android 小例之两列菜单关联

使用libcurl下载文件小例

django小例

PHP执行Linux命令行小例——文件压缩

[AndroidStudio]_[初级]_[配置自动完成的代码片段]