The doc says reference each table through a view so that Modify or delete columns not referenced by the view without invalidating dependent objects. I dont find a single case in which this could actually make sense.
If a dependent object is referring to particular column in table, modify or deleting other columns really does not change the status of dependent object either indirectly through a view
or directly.
True, but what if you aren't referring to the columns explicitly?
Using the set-up from your previous question, here's an example where it could make sense:
At this point all three objects are valid. If I drop the unused
num2
column:then the procedure is invalidated:
If the column is re-added and the procedure is created against the view instead:
then modifying the table now has no effect:
Now, as you seem to already know, this only works with
select *
. If the table version hasselect num1
then dropping the second column has no effect on the procedure, as you suggested in the question. And usingselect *
is frowned upon. In this situation, the procedure would be recompiled automatically, and successfully as long as there really are no references to the dropped column.Another scenario is if, as in your previous example, you're inserting into a table without specifying the column names (also frowned upon). In that case changing the table definition would invalidate the procedure, possibly rather more catastrophically since it wouldn't recompile successfully if you end up with different number/order/types of columns. If you were inserting into the view via an
instead of
trigger then the procedure wouldn't care. (The trigger would, and that then might not recompile, depending on what it was doing). That's more related to the first bullet in the docs, not the second one you're asking, though; but does apply to dropping columns too.So it's arguable whether this is really helpful advice. I'm sure there are people who use
select *
or inserting without specifying the column names, and some who use views to avoid those occasional side effects. I'm not sure I can see a scenario where a layer of views just to avoid the possibility of dependent object invalidation would be worth the extra management, but some people probably do.If you're seeing objects being invalidated, even temporarily, you're probably doing something wrong - schema changes should normally be done in a planned and controlled way so side effects are handled properly, including coordinated updates to dependent objects. But again others will have different opinions and priorities.