Partitioned Tables in SQL SERVER

The final step during the process of creating partition is to create the partitioned table.

The below example shows the creation of Partitioned Tables

Create Table Employee(
EmployeeID int PRIMARY KEY,
FirstName varchar(50),
LastName varchar(50),
Sex char(1),
Age int CONSTRAINT df DEFAULT 18,
DateOfBirth DateTime)
ON EmployeePartitionScheme (EmployeeID)

Comments

Popular posts from this blog

Jesus - God Thinks of you.

ASP.NET 4.0 Feature - URL Routing

Tips on JQuery Intellisense in VS 2008