Sql Server 分區演練

來源:互聯網
上載者:User

代碼加註釋,希望對初學者有用。

USE [master]
GO
if exists (select * from sys.databases where name = 'Test_1')
drop database Test_1
GO
--建立新庫,要演練分區所以我們會多建立兩個檔案組Test_A,Test_B,以便在後面的資料分割配置中使用。
CREATE DATABASE [Test_1] ON  PRIMARY 
( NAME = N'test_1', FILENAME = N'D:\sqldata\test_1.mdf' , SIZE = 10240KB , MAXSIZE = UNLIMITED, FILEGROWTH = 1024KB ),
 FILEGROUP [test_A] 
( NAME = N'Test_A', FILENAME = N'D:\sqldata\test_A.ndf' , SIZE = 1024KB , MAXSIZE = UNLIMITED, FILEGROWTH = 1024KB ),
FILEGROUP [test_B] 
( NAME = N'Test_B', FILENAME = N'D:\sqldata\test_B.ndf' , SIZE = 1024KB , MAXSIZE = UNLIMITED, FILEGROWTH = 1024KB )
 LOG ON 
( NAME = N'Test_log', FILENAME = N'D:\sqldata\Test_log.ldf' , SIZE = 7616KB , MAXSIZE = 2048GB , FILEGROWTH = 10%)
 COLLATE Chinese_PRC_CI_AS
GO
USE [Test_1]
GO
--若分區函數存在則先drop掉
IF  EXISTS (SELECT * FROM sys.partition_functions WHERE name = N'test_partition')
DROP PARTITION FUNCTION [test_partition]
GO
/**//*建立分區函數給後面的資料分割配置使用,分區函數很簡單就是指定一個範圍確定在某個值為什麼的時候放在那個分區上*/
--建立一個簡單的分區函數,該函數以1000為界分兩個區
create partition function test_partition(int)
AS
RANGE LEFT FOR VALUES (1000) 
go
/**//*看資料分割配置是否存在,若存在先drop掉*/
IF  EXISTS (SELECT * FROM sys.partition_schemes WHERE name = N'test_scheme')
DROP PARTITION SCHEME test_scheme
GO
--建立資料分割配置,資料分割配置需要指定一個分區函數,並指定在分區函數中分的區需要放在哪一個檔案組上
create partition scheme test_scheme 
AS 
PARTITION [test_partition] TO (test_A,test_B)
GO
--建立分區表
if object_id('student','U') is not null
drop table student;
go
create table student
(
    id int identity(1,1) not null,
    name varchar(10) not null,
    class int not null,
    grade int
) on test_scheme(class) --在此處指定該表要使用的資料分割配置,並將指定分割資料行
go
--隨便插入幾條資料
insert into student values ('AQU',10,100); -- 這條資料在A分區上
insert into student values ('AQU_邊界',1000,89); -- 這邊資料也在A分區上是個邊界,因為我們上面在函數中指定的是RANGE LEFT,所以1000在A分區上
insert into student values ('BQU',1001,90); -- 這一條肯定是在B分區上了。

go
--最後看看結果。$partition.分區函數(分區列)可以返回某一行所在的分區序號
select *,分區序號 = $partition.test_partition(class) from student
GO

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.