001
001

Reputation: 65205

table partitioning without recoding application?

In SQL Server is it possible to perform table partition without having to recode or modify the application?

Upvotes: 0

Views: 46

Answers (1)

Mitch Wheat
Mitch Wheat

Reputation: 300749

Yes. The application will simply see a single table, so no changes are required to your application.

Partitioned Tables and Indexes in SQL Server 2005

Partitioned Table and Index Strategies Using SQL Server 2008

Upvotes: 1

Related Questions