Rename Views
You can rename a view in SQL Server 2012 by using SQL Server Management Studio or Transact-SQL.
Caution
|
|---|
|
If you rename a view, code and applications that depend on the view may fail. These include other views, queries, stored procedures, user-defined functions, and client applications. Note that these failures will cascade. |
In This Topic
-
Before you begin:
-
To rename a view, using:
-
Follow Up: After renaming a view
Prerequisites
Obtain a list of all dependencies on the view. Any objects, scripts or applications that reference the view must be modified to reflect the new name of the view. For more information, see Get Information About a View. We recommend that you drop the view and recreate it with a new name instead of renaming the view. By recreating the view, you update the dependency information for the objects that are referenced in the view.
Security
To rename a view
While you can use sp_rename to change the name of the view, we recommend that you delete the existing view and then re-create it with the new name.
For more information, see CREATE VIEW (Transact-SQL) and DROP VIEW (Transact-SQL).

Caution