Multi refresh of views within a database
As we know you have SP_RECOMPILE to re-compile the stored procedures within the database and DBREINDEX statement to reindex the fragmented indexes.
How about refreshing the views that are modified on day-to-day basis within a database?
You can take help of SP_REFRESHVIEW that updates the metadate for a specified view, ensure that view is not a schema bounded (not used with SCHEMABINDING clause). Because the view will reproduce unexpected results when executed SP_REFRESHVIEW statement.