您现在的位置是: 首页 > 后端开发 SqlServer 刷新所有视图
SqlServer 刷新所有视图
2020-05-20 【后端开发】 2705人已围观 4753次浏览
简介SqlServer 刷新所有视图
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE procedure [dbo].[RefreshAllView]
as
begin
declare @ViewName varchar(250)
declare #views cursor for select name from sysobjects
where objectproperty(id,N’IsView’)=1
and objectproperty(id,N’IsSchemaBound’)=0 and uid=1 order by name
open #views
fetch next from #views into @viewname
while @@fetch_status=0
begin
begin try
exec sp_refreshview @viewname –更新视图
print ’更新成功: ’+ @viewname
end try
begin catch
print ’更新出错: ’+ @viewname + ’ ’ + ERROR_MESSAGE()
end catch
fetch next from #views into @viewname
end
close #views
deallocate #views
end
GO
很赞哦! (0)
相关文章
- mac idea spring boot 启动慢
- SpringBoot @NotBlank 不生效问题
- Error in execution; nested exception is io.lettuce.core.RedisCommandExecutionException: ERR DISABLE You can't write or read against a disable instance
- 类 BASE64Decoder 程序包 sun.misc 找不到符号
- RocketMQ 出现 sendDefaultImpl call timeout 问题
- Laravel项目出现could not be opened: failed to open stream: Permission denied
- SqlServer字符串处理
- Nestedset 出现 Node must exists. 错误解决方案
- SpringBoot 2.x 文件上传出现 The field file exceeds its maximum permitted size of 1048576 bytes
- PHP 中list()出现Undefined offset: 0错误
点击排行
- Error in execution; nested exception is io.lettuce.core.RedisCommandExecutionException: ERR DISABLE You can't write or read against a disable instance
- Debian apt 使用国内镜像
- RocketMQ 出现 sendDefaultImpl call timeout 问题
- 类 BASE64Decoder 程序包 sun.misc 找不到符号
- SpringBoot @NotBlank 不生效问题
- 记一次 Mybatis-Plus 自动填充无效问题解决
- SpringBoot 2.x 文件上传出现 The field file exceeds its maximum permitted size of 1048576 bytes
- nuxt 项目完整部署方案
站长推荐
猜你喜欢
- SpringBoot 定时任务 多线程
- Mac 设置允许任何来源
- Linux 常用命令 持续更新中...
- SpringBoot 启动测试时出现提示 Test class should have exactly one public zero-argument constructor
- Mac降温软件推荐smcFanControl
- Error in execution; nested exception is io.lettuce.core.RedisCommandExecutionException: ERR DISABLE You can't write or read against a disable instance
- PHP 中list()出现Undefined offset: 0错误
- SqlServer 优化技巧
- CentOS 安装Node.js
- 【代码片段】MySQL新建表添加基础字段