We currently use partitioned views (over horizontally partitioned tables) in SQL Server 2000. The tables are partitioned by month. This works extremely well for our needs. In evaluating SQL Server 2005 Standard Edition, we are finding some issues trying to get this to work properly. A select against the view results in a table scan. Does anyone know if partitioned views have any issues in 2005 SE We are not doing anything different in 2005 SE than we currently do in 2000 SE.

Using Partitioned Views in SQL Server 2005 Standard Edition
StuartRothrock
StephanG,
Would you please post your query and the query plan by the following commands
set showplan_text on
<run your query here>
set showplan_text off
Thanks,
- Ming