SQL Server Partition Table switch application in data migration

Source: Internet
Author: User
-- Create Partition Function
Create Partition Function partrange1 (INT)
As range left for values (10, 20, 30 );
Go
-- Create partition scheme
Create Partition Scheme partscheme1
As partition partrange1
All to ([primary]);
Go
-- Create Table that uses this partitioning scheme
Create Table parttable (col1 int, col2 varchar (20 ))
On partscheme1 (col1 );
Go
-- Query partition information
Select *
From SYS. partitions
Where object_id = object_id ('parttable ')
Go
-- Insert some sample data
Insert into parttable (col1, col2) values (5, 'parttable ')
Insert into parttable (col1, col2) values (6, 'parttable ')
Insert into parttable (col1, col2) values (7, 'parttable ')
Go
-- Select the data
Select * From parttable
Go
-- Switch in
Create Table newparttable (col1 int check (col1> 30 and col1

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.