About 121,000 results
Open links in new tab
  1. Difference between View and table in sql - Stack Overflow

    May 23, 2017 · Possible Duplicate: Difference Between Views and Tables in Performance What is the main difference between view and table in SQL. Is there any advantage of using views …

  2. sql - When to use a View instead of a Table? - Stack Overflow

    Some databases (e.g. Oracle, PostgreSQL) support materialized views, which store the "view" temporarily in another table for faster access. This is done to speed up read access when the …

  3. sql - Is a view faster than a simple query? - Stack Overflow

    MS SQL Indexed views are faster than a normal view or query but indexed views can not be used in a mirrored database invironment (MS SQL). A view in any kind of a loop will cause serious …

  4. database - Table vs View vs Materialized View - Stack Overflow

    May 18, 2014 · A table is where data is stored. You always start with tables first, and then your usage pattern dictates whether you need views or materialized views. A view is like a stored …

  5. sql - Performance of Tables vs. Views - Stack Overflow

    Oct 8, 2016 · Recently started working with a database in which the convention is to create a view for every table. If you assume that there is a one to one mapping between tables and views, I …

  6. SQL Server tables: what is the difference between @, # and

    Feb 8, 2010 · 29 Have a look at Temporary Tables vs. Table Variables and Their Effect on SQL Server Performance Differences between SQL Server temporary tables and table variables …

  7. View or Temporary Table - which to use in MS SQL Server?

    In SQL Server, you can also use table variables (declare @t table . . .). Using a temporary table (or table variable) within a single stored procedure would seem to have few implications in …

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

    Nov 19, 2010 · It's clear to me why a materialized view is preferable over just querying a base table. What is not so clear is the advantage over just creating another table with the same data …

  9. What's the difference between a temp table and table variable in …

    Aug 26, 2008 · If you're writing a function you should use table variables over temp tables unless there's a compelling need otherwise. Both table variables and temp tables are stored in …

  10. Table-Valued Function (TVF) vs. View - Stack Overflow

    Apr 18, 2015 · What's the difference between table-valued functions and views? Is there something you can do with 1 that's hard or impossible to do with the other? Or does the …