Bulk update of all views after SQL Server modifies table structure

Source: Internet
Author: User

Recently modified the database table structure, the data synchronization problem, found that a lot of data has been modified, but filtered through the view or the original data, so suspect should be the view cache data, in the garden to find the following blog post, here to make a record memo.

original link:http://www.cnblogs.com/yashen/archive/2004/12/23/81000.html

This is often the case when we use SQL Server, and when we modify the structure of a table, the associated view is wrong and the program is wrong, so there is a stored procedure below.

CREATEPROCEDURERefreshAllView ASDECLAREMyCursor CURSORFORselectNamefromdbo.sysobjects whereOBJECTPROPERTY(id, N‘IsView‘) = 1 and(notnamein(‘sysconstraints‘,‘syssegments‘))  DECLARE@namevarchar(40)OPENMyCursorFETCHNEXTFROMMyCursor INTO@nameWHILE (@@fetch_status <> -1)BEGIN IF (@@fetch_status <> -2) begin execsp_refreshview @name end FETCH NEXTFROMMyCursor INTO@nameENDCLOSEMyCursorDEALLOCATEMyCursor

Bulk update of all views after SQL Server modifies table structure

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.