Hello there!
I have a database in SQL Server 2008 that supports various applications. I am now starting the development of a new application and, from that database, I require data that fits in one table (though there is some replication).
The data I way may be extracted to a view (a few inner joins) with 6 columns. I'm developing a web application that must be really fast navigating through the data (about 6 million records). Therefore, I would like to know if it is advisable to query the SQL Server view or to deploy a new, updatable, database indexed by Lucene or similar mechanism (BerkeleyDB?)
Thank in advance!