vote up 18 vote down star
8

Is a

select *  from myView

faster than the query itself to create the view (in order to have the same resultSet):

select * from ([query to create same resultSet as myView])

?

It's not totally clear to me if the view uses some sort of caching making it faster compared to a simple query.

Any help would be appreciated!

flag

12 Answers

vote up 10 vote down check

Generally speaking, no. Views are primarily used for convenience and security, not for speed improvements.

That said, SQL Server 2000 and above do have a special feature called Indexed Views that can greatly improve performance, but you have to create indexed views following a very specific set of guidelines.

There is an important reference in Books Online in regards to view resolution.

Here is an article that describes the benefits and creation of indexed views:

For many years, Microsoft® SQL Server™ has supported the ability to create virtual tables known as views. Historically, these views served these main purposes:

  • To provide a security mechanism that restricts users to a certain subset of data in one or more base tables.

  • To provide a mechanism that allows developers to customize how users can logically view the data stored in base tables.

With SQL Server 2000, the functionality of SQL Server views was expanded to provide system performance benefits. It is possible to create a unique clustered index on a view, as well as nonclustered indexes, to improve data access performance on the most complex queries. In SQL Server 2000 and 2005, a view that has a unique clustered index is referred to as an indexed view.

link|flag
vote up 23 vote down

Yes, views can have a clustered index assigned and, when they do, they'll store temporary results that can speed up resulting queries.

Update: At least three people have voted me down on this one. With all due respect, I think that they are just wrong; Microsoft's own documentation makes it very clear that Views can improve performance.

First, simple views are expanded in place and so do not directly contribute to performance improvements - that much is true. However, indexed views can dramatically improve performance.

Let me go directly to the documentation:

After a unique clustered index is created on the view, the view's result set is materialized immediately and persisted in physical storage in the database, saving the overhead of performing this costly operation at execution time.

Second, these indexed views can work even when they are not directly referenced by another query as the optimizer will use them in place of a table reference when appropriate.

Again, the documentation:

The indexed view can be used in a query execution in two ways. The query can reference the indexed view directly, or, more importantly, the query optimizer can select the view if it determines that the view can be substituted for some or all of the query in the lowest-cost query plan. In the second case, the indexed view is used instead of the underlying tables and their ordinary indexes. The view does not need to be referenced in the query for the query optimizer to use it during query execution. This allows existing applications to benefit from the newly created indexed views without changing those applications.

This documentation, as well as charts demonstrating performance improvements, can be found here.

Update 2: the answer has been criticized on the basis that it is the "index" that provides the performance advantage, not the "View." However, this is easily refuted.

Let us say that we are a software company in a small country; I'll use Lithuania as an example. We sell software worldwide and keep our records in a SQL Server database. We're very successful and so, in a few years, we have 1,000,000+ records. However, we often need to report sales for tax purposes and we find that we've only sold 100 copies of our software in our home country. By creating an indexed view of just the Lithuanian records, we get to keep the records we need in an indexed cache as described in the MS documentation. When we run our reports for Lithuanian sales in 2008, our query will search through an index with a depth of just 7 (Log2(100) with some unused leaves). If we were to do the same without the VIEW and just relying on an index into the table, we'd have to traverse an index tree with a search depth of 21!

Clearly, the View itself would provide us with a performance advantage (3x) over the simple use of the index alone. I've tried to use a real-world example but you'll note that a simple list of Lithuanian sales would give us an even greater advantage.

Note that I'm just using a straight b-tree for my example. While I'm fairly certain that SQL Server uses some variant of a b-tree, I don't know the details. Nonetheless, the point holds.

Update 3: The question has come up about whether an Indexed View just uses an index placed on the underlying table. That is, to paraphrase: "an indexed view is just the equivalent of a standard index and it offers nothing new or unique to a view." If this was true, of course, then the above analysis would be incorrect! Let me provide a quote from the Microsoft documentation that demonstrate why I think this criticism is not valid or true:

Using indexes to improve query performance is not a new concept; however, indexed views provide additional performance benefits that cannot be achieved using standard indexes.

Together with the above quote regarding the persistence of data in physical storage and other information in the documentation about how indices are created on Views, I think it is safe to say that an Indexed View is not just a cached SQL Select that happens to use an index defined on the main table. Thus, I continue to stand by this answer.

link|flag
Ryan's point is a good one: the point of a view isn't to improve performance (despite the small improvement I point out). It is to simplify other queries or standardize access to data. – Mark Brittingham Jan 13 at 14:14
Query plans are stored in the plan cache for both views and ordinaary SQL queries, based on query/view parameters. For both, they are dropped from the cache when they have been unused for a long enoujgh period and the space is needed. After which, if the same query is issued, it is recompiled. – Charles Bretana Jan 13 at 14:18
2  
Yes, indexed views can dramatically improve performance. But indexed views are not just "views", and generally speaking, normal "view" aren't faster than their associated queries. – BradC Jan 13 at 16:17
1  
@Charles - it doesn't matter if it's the index, the fact that a view can leverage the index and a raw query can't is enough – annakata Jan 13 at 17:36
1  
Since a table can only have one clusterdee index, and you CAN create a separate clustered index on a view, (since the fields in the clustered index are independently persisted in the index pages), this is a cheat (work-arounnd?) that allows you to get TWO clustered indices on one Table. – Charles Bretana Jan 13 at 20:34
show 22 more comments
vote up 8 vote down

In SQL Server at least, Query plans are stored in the plan cache for both views and ordinary SQL queries, based on query/view parameters. For both, they are dropped from the cache when they have been unused for a long enough period and the space is needed for some other newly submitted query. After which, if the same query is issued, it is recompiled and the plan is put back into the cache. So no, there is no difference, given that you are reusing the same SQL query and the same view with the same frequency.

Obviously, in general, a view, by it's very nature (That someone thought it was to be used often enough to make it into a view) is generally more likely to be "reused" than any arbitrary SQL statement.

link|flag
vote up 2 vote down

I cannot speak from experience with sqlserver, but for most databases the answer would be no. The only potential benefit that you get, performance wise, from using a view is that it could potentially create some access paths based on the query. But the main reason to use a view is to simplify a query or to standardize a way of accessing some data in a table. Generally speaking you won't get a performance benefit. I may be wrong though.

I would come up with a moderately more complicated example and time it yourself to see.

link|flag
another reason for views is to assist access control in role based models – annakata Jan 13 at 14:32
You are wrong about the performance improvements. I did not explain enough to convince some people in my original comment but MS has explicit documentation on how to use views to improve performance. See my (now heavily downvoted) response below. – Mark Brittingham Jan 13 at 14:38
vote up 2 vote down

It may be faster if you createa materialized (WITH SCHEMABINDING) view. Non materialized views execute just like the regular query.

link|flag
schemabinding has little to do with performance, it binds the schema of the view to the underlying table so it stays in sync and is a pre-req for indexed views. – Sam Saffron Nov 14 at 21:14
vote up 2 vote down

I would expect the two queries to perform identically. A view is nothing more than a stored query definition, there is no caching or storing of data for a view. The optimiser will effectively turn your first query into your second query when you run it.

link|flag
If the view is a small set of fields and those fields are then covered with an index is SQL Server clever enough to use that covering index when fulfilling the second form of query? – AnthonyWJones Jan 13 at 14:18
vote up 1 vote down

My understanding is that a while back, a view would be faster because SQL Server can stored an execution plan and then just use it instead of trying to figure one out on the fly. I think the performance gains nowadays is probably not as great as it once was, but I would have to guess there would be some marginal improvement to use the view.

link|flag
This was my understanding: used to matter, doesn't any more – annakata Jan 13 at 14:33
Doesn't from a performance standpoint - does as a means of access restriction. But that would be another topic. ;) – AnonJr Jan 13 at 14:46
oh sure, lots of good reasons to be using views, not a single one to use raw queries :P – annakata Jan 13 at 17:37
vote up 1 vote down

Definitely a view is better than a nested query for SQL Server. Without knowing exactly why it is better (until I read Mark Brittingham's post), I had run some tests and experienced almost shocking performance improvements when using a view versus a nested query. After running each version of the query several hundred times in a row, the view version of the query completed in half the time. I'd say that's proof enough for me.

link|flag
Thanks Jordan...glad to hear that all this theory works out in the real world. – Mark Brittingham Jan 13 at 18:42
vote up 0 vote down

There is no practical different and if you read BOL you will find that ever your plain old SQL SELECT * FROM X does take advantage of plan caching etc.

link|flag
vote up 0 vote down

There should be some trivial gain in having the execution plan stored, but it will be negligible.

link|flag
vote up 0 vote down

It may help to review this question.

link|flag
vote up -2 vote down

The purpose of a view is to use the query over and over again. To that end, SQL Server, Oracle, etc. will typically provide a "cached" or "compiled" version of your view, thus improving its performance. In general, this should perform better than a "simple" query, though if the query is truly very simple, the benefits may be negligible.

Now, if you're doing a complex query, create the view.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.