Home Forums SQL Server 2008 T-SQL (SS2K8) how can esure data hold or persist in a database view till i havent refresh view RE: how can esure data hold or persist in a database view till i havent refresh view

  • Grant Fritchey (10/22/2013)


    You could look at materialized or indexed views. These are actually a separate data store that you have to update to see data changes.

    Indexed views do not need to be updated to see data changes. Data changes are automatically applied to the index as if the index was part of the base table.

    The SQL Guy @ blogspot[/url]

    @SeanPearceSQL

    About Me[/url]