So if a view exists with something like
CREATE VIEW vwFoo
AS
SELECT tblA.*, tblB.x, tblB.y, tblB.x FROM ...
and elsewhere in business logic or stored procedure you have something like SELECT * FROM vwFoo if you actually have altered tblA then you need to rebuild the VIEW, why on earth is this?
CREATE VIEW vwFoo
AS
SELECT tblA.*, tblB.x, tblB.y, tblB.x FROM ...
and elsewhere in business logic or stored procedure you have something like SELECT * FROM vwFoo if you actually have altered tblA then you need to rebuild the VIEW, why on earth is this?