About 139,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. sql - Performance of Tables vs. Views - Stack Overflow

    Jun 29, 2011 · 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 …

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

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

    May 18, 2014 · A view is like a stored query for future use, if you're frequently joining or filtering the same tables the same way in multiple places. A materialized view is like a combination of …

  7. sql - Difference between views and SELECT queries - Stack Overflow

    Jul 10, 2009 · A view can be described as a virtual table, created from a SQL query stored in the database. Therefore, the following are aspects to consider in using VIEWS Performance: it …

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

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

  10. sql - What is the difference between a stored procedure and a …

    A view is faster as it displays data from the tables referenced whereas a store procedure executes sql statements. Check this article : View vs Stored Procedures .