The syntax of this procedure is:
sp_refreshview [ @viewname= ] 'viewname'
Here is an example that executes this procedure:
USE NORTHWND;
GO
sp_refreshview N'Invoices';
GO
Here is an example that executes this procedure:
USE NORTHWND;
GO
sp_refreshview N'Invoices';
GO
Join the conversation! Your thoughts help the community grow.