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

    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 Views …

  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 …

    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 …

    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 …

  5. 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 …

  6. 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 …

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

    Jul 1, 2014 · 3 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 …

  8. sql server - Creating a View or Materialized View to refresh …

    Nov 12, 2019 · I am trying to create either a view or a materialized view (i don't know which one to use) that takes a complex select statement with joins, filters, and unions and constantly …

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

    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 …

  10. sql - What is the difference between Views and Materialized Views …

    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 …