About 833,000 results
Open links in new tab
  1. How to create materialized views in SQL Server?

    Oct 21, 2010 · They're called indexed views in SQL Server - read these white papers for more background: Creating an Indexed View Improving Performance with SQL Server 2008 Indexed …

  2. Materialized View vs. Tables: What are the advantages?

    Nov 19, 2010 · Well, to be precise this doesn't create a Materialized View, but in SQL Server and PostgreSQL it doesn't preclude a Materialized View either.

  3. sql - difference between view and indexed view or materialized view ...

    Sep 14, 2018 · The key difference is that materialized view is well, materialized. This basically means that data is being persisted into a virtual table which is maintained by SQL Server itself.

  4. sql server - What is the difference between creating a new table or a ...

    Nov 30, 2021 · In SQL Server, the concept closest to Materialized Views is are Indexed Views. There is a number of constraints that need to be satisfied if you want to create an Indexed View, see MS …

  5. sql - Is it possible to create index on view columns? - Stack Overflow

    17 You cannot create an index over a view, which is just a query. You can, instead, create an index over a materialized view. A materialized view is a table which is created by evaluating a view, so that you …

  6. sql - Table vs Materialized View - Stack Overflow

    Oct 18, 2020 · The first method is based on matching the SQL text of the query with the SQL text of the materialized view definition. If the first method fails, the optimizer uses the more general method in …

  7. sql - What is the difference between Views and Materialized Views in ...

    Sep 18, 2008 · A materialized view is a table on disk that contains the result set of a query. Materialized views are primarily used to increase application performance when it isn't feasible or desirable to use …

  8. Alternatives to materialized view on Azure SQL - Stack Overflow

    Mar 3, 2022 · Look, using an indexed view has almost nothing to do with your app-tier development mode. Or, put in other terms, if you are going to go code-first and ignore the things the DB can do for …

  9. Is materialized view concept same as an indexed view in SQL server ...

    Jun 11, 2021 · A materialized view in Azure data warehouse is similar to an indexed view in SQL Server. It shares almost the same restrictions as indexed view (see Create Indexed Views for details) except …

  10. Equivalent of Materialised Views in SQL Server - Stack Overflow

    Jul 1, 2014 · We have something called Materialized Views in Oracle, do we have anything like it in SQL Server. After doing some findings on Google, I feel that Indexed Views can be somewhat similar to it. …