What is the best way to partition large tables in SQL Server?

Posted by RyanFetz on Stack Overflow See other posts from Stack Overflow or by RyanFetz
Published on 2008-10-03T19:00:41Z Indexed on 2010/05/05 17:28 UTC
Read the original article Hit count: 129

Filed under:
|
|

In a recent project the "lead" developer designed a database schema where "larger" tables would be split across two seperate databases with a view on the main database which unioned the two seperate database-tables together. The main database is what the application was driven off of so these tables looked and felt like ordinary tables (except some quirkly things around updating). This seemed like a HUGE performance problem. We do see problems with performance around these tables but nothing to make him change his mind about his design. Just wondering what is the best way to do this, or if it is even worth doing?

© Stack Overflow or respective owner

Related posts about sql

Related posts about sql-server