Using SQL Server Express 2008 & Management Studio.
I have a table & a view. At the time the View was created, the Table's FirstName column was varchar(50). Modify Table.Firstname to be nvarchar(50) and the View still indicates that the column is varchar(50).
How do I get the View to display the current column definition?
Here's what I've tried (that didn't work):
- Click the Refresh button
- Close Management Studio & re-open it.
Here's what did work:
- Create a brand new view. The new view does display the current field definition
Note: This project has many views, so I'd prefer not to have to re-create all of them.