I am using Visual Studio 2008 and SQL Server 2008 Express.
How can I change the name of the view? I can change tables' names, but I can't change the view name.
Any suggestion?
Thank you, Fabio Milheiro
I am using Visual Studio 2008 and SQL Server 2008 Express.
How can I change the name of the view? I can change tables' names, but I can't change the view name.
Any suggestion?
Thank you, Fabio Milheiro
You can use the ALTER command or CREATE a new one and delete the old one.
-Shaun
you can use the gui in sms
you can right click view, edit it, then do generate script if you want the code
You can use the ALTER VIEW statement something like this :
ALTER VIEW dbo.myView
AS
SELECT foo
FROM dbo.bar
WHERE widget = 'foo'
GO
To rename a view, use sp_rename System Stored Procedure :
EXEC sp_rename 'dbo.myView', 'dbo.myNewViewName'