We are about to start a new project that includes fairly large data sets. Additionally, in many cases we have to grab data from a variety of tables.
I was looking over SQL Server 2005 Indexed Views and I am currently considering using them to boost the performance of the joined tables I need to query and display results.
Does anyone have experience in using Indexed Views as a means of increasing the performance of large table joins
Additionally, the documentation I read up on the Indexed views seemed a little vague regarding which versions they work with. Does SQL Server 2005 Standard Edition support Indexed Views or is it available only in Enterprise
Thanks in advance,
Chad

Indexed Views
Michael Lipp MSFT
Indexed views can be created in any edition of SQL Server 2005. In SQL Server 2005 Enterprise Edition, the query optimizer automatically considers the indexed view. To use an indexed view in all other editions, the NOEXPAND view hint must be used.
http://whidbey.msdn.microsoft.com/library/en-us/udb9/html/669b47d9-ab28-4656-ab68-1ed6f69f54c2.asp