SlackmasterK wrote:
 |
figuerres wrote:
are you talking about chnages to data in rows not showing up or chnages to the structure of a table ? |
Changes to the structure... Specifically, one column's name being changed.
The part that bugs me the most is that the view changes...
after I open the table... But not if I just query it from an app.
views are a little bit like stored procedures, I think they store the plan and use that when they run...
if the views are selecting * and not the names of columns perhaps you can dump each of them into a text file and have an "update this mess" proc?
just a set of alter View [def here] then a "go" then the next view.
get them in order so that the later ones refer to ones already updated...
then you can run that sproc when you make a change.