sql server 2008 filtered index
Posted on : 04-06-2012 | By : Devi Prasad | In : Filtered index
0

Filtered index is an index that is filtered.
Filtered index contains a where clause, so that the index is only created on the set of rows filtered by the where clause.
Example:
USE AdventureWorks GO CREATE NONCLUSTERED INDEX VendorURLNotNull ON Purchasing.Vendor (AccountNumber,Name) WHERE PurchasingWebServiceURL IS NOT NULL ;
Reference : Devi Prasad (sqlserverlearner.com)
Do you like my blog?
If you liked reading this blog, please help spread the word by sharing this blog with your friends.
Need Help On SQL Server?
Cannot Find Solution to your problem (or) If you are looking for some help on SQL Server. Dont worry Click Here to Post your question and solve your issue.

Tags: create filtered index in sql server, create filtered index in sql server 2008 r2, how to create filtered index in sql server, how to create filtered index in sql server 2008, how to create filtered index in sql server 2008 r2, how to create filtered index in sql server 2012