Home Database Mysql Tutorial SQL Server 表分区整理

SQL Server 表分区整理

Jun 07, 2016 pm 03:10 PM
server sql Partition Preface tidy

1. 前言 SQL Server 2005开始支持表 分区 ,这种技术允许所有的表 分区 都保存在同一台服务器上。每一个表 分区 都和在某个文件组(filegroup)中的单个文件关联。同样的一个文件/文件组可以容纳多个 分区 表。在这种设计架构下,数据库引擎能够判定查询过程中

1.      前言

SQL Server 2005开始支持表分区,这种技术允许所有的表分区都保存在同一台服务器上。每一个表分区都和在某个文件组(filegroup)中的单个文件关联。同样的一个文件/文件组可以容纳多个分区表。在这种设计架构下,数据库引擎能够判定查询过程中应该访问哪个分区,而不用扫描整个表。如果查询需要的数据行分散在多个分区中,SQL Server使用多个处理器对多个分区进行并行查询。你可以为在创建表的时候就定义分区的索引。对小索引的搜索或者扫描要比扫描整个表或者一张大表上的索引要快很多。因此,当对大表进行查询,表分区可以产生相当大的性能提升通过分别检查同一条返回所有行的、简单SELECT语句在分区表和非分区表上的执行计划,返回的数据范围通过WHERE语句来指定。同一条语句在这两个不同的表上有不同的执行计划。对于分区表的查询显示出一个嵌套的循环和索引的扫描。从本质上来说,SQL Server将两个分区视为独立的表,因此使用一个嵌套循环将它们连接起来。对非分区的表的同一个查询则使用索引扫描来返回同样的列。当你使用同样的分区策略创建多个表,同时在查询中连接这些表,那么性能上的提升会更加明显。

2.      分区三步曲

SQL Server数据库表分区操作过程由三个步骤组成

2.1.       创建分区函数

2.1.1.  创建文件组,一般文件组个数=分区值个数+1

alter database [mydatabase] --创建文件组1
 
add filegroup [fg_tb_partition_id_1]
 
go
 
alter database [mydatabase] --创建文件组2
 
add filegroup [fg_tb_partition_id_2]
 
go
 
alter database [mydatabase] --创建文件组3
 
add filegroup [fg_tb_partition_id_3]
 
go


 

2.1.2.  为数据库创建文件

一个文件不能属于两个文件组,一个文件组可以包含多个文件,可以同时指定初始化大小及

增长大小。

alter database [mydatabase]
 
add file
  (name=N
'fg_tb_partition_id_1_data',
   filename=N
'D:\dbbackup\fg_tb_partition_id_1_data.ndf',
   
size=30mb,filegrowth=10%)
   
to filegroup [fg_tb_partition_id_1]
   
go
 
alter database [mydatabase]
 
add file
  (name=N
'fg_tb_partition_id_2_data',
   filename=N
'D:\dbbackup\fg_tb_partition_id_2_data.ndf',
   
size=30mb,filegrowth=10%)
   
to filegroup [fg_tb_partition_id_2]
   
go
 
alter database [mydatabase]
 
add file
  (name=N
'fg_tb_partition_id_3_data',
   filename=N
'D:\dbbackup\fg_tb_partition_id_3_data.ndf',
   
size=30mb,filegrowth=10%)
   
to filegroup [fg_tb_partition_id_3]
   
go
 
 

2.1.3.  创建分区函数

分区函数用于定义你希望SQL Server如何对数据进行分区的参数值(how)。这个操作并不涉及任何表格,只是单纯的定义了一项技术来分割数据.

create partition function
  fun_tb_partition_id(
intas
 
range right
 
for values(10000,20000)

注意:

这里使用了右分区则表示分区取值范围为

属于第一分区

=10000 And 属于第二分区

=20000属于第三分区

2.2.       创建分区架构

一旦给出描述如何分割数据的分区函数,接着就要创建一个分区架构,用来定义分区位置(where)。

create partition scheme
  sch_tb_partition_id 
as
 
partition fun_tb_partition_id
 
to([fg_tb_partition_id_1],[fg_tb_partition_id_2],[fg_tb_partition_id_3])

2.3.       对表进行分区

定义好一个分区架构后,就可以着手创建一个分区表了。只需要在表创建指令中添加一个

"ON"语句,用来指定分区架构以及应用该架构的表列。因为分区架构已经识别了分区函数,

所以不需要再指定分区函数了。

create table [dbo].[tb_partition1](
      [id] [
intidentity(1,1not null,
      [username] 
as 'name'+ltrim([id]),
      [age] [
intnull constraint [df_ tb_partition1_age] default ((0)),
   
constraint [pk_tb_partition1] primary key clustered
  (
      [id] 
asc
  )
with( pad_index = on, fillfactor = 100on [sch_tb_partition_id](id)
  ) 
on [sch_tb_partition_id]([id])
 
go
 
create table [dbo].[tb_partition2](
      [id] [
intidentity(1,1not null,
      [username] 
as 'name'+ltrim([id]),
      [age] [
intnull constraint [df_tb_partition2_age] default ((0)),
   
constraint [pk_tb_partition2] primary key clustered
  (
      [id] 
asc
  )
with( pad_index = on, fillfactor = 100on [sch_tb_partition_id](id)
  ) 
on [sch_tb_partition_id]([id])

 

2.4.       填充测试数据,并进行合并与删除操作

2.4.1.  填充数据

insert tb_partition1 default values
 
go 30005

2.4.2.  查看数据分区状况

select 
      $partition.fun_tb_partition_id(id) 
as partition_num,
      
min(id) as min_value,
      
max(id) as max_value,
      
count(1as record_num
 
from [dbo].[tb_partition1]
 
group by $partition.fun_tb_partition_id(id)
 
order by $partition.fun_tb_partition_id(id)

2.4.3.  切换分区

alter table [dbo].[tb_partition1]
  switch 
partition 1 to [dbo].[tb_partition2] partition 1
 
--查看结果
 
select * from [dbo].[tb_partition1]
 
select * from [dbo].[tb_partition2]

2.4.4.  修改分区架构和分区函数

alter partition scheme [sch_tb_partition_id]
 
next used [fg_tb_partition_id_1]
 
go
 
alter partition function [fun_tb_partition_id]()
  split range(
15000)

3.      分区注意事项

3.1.       分区边界值问题

使用left和right时候需要注意,特别是时间分割上,通常使用以00:00:00.000最可靠,这种分割需要使用right如果使用left需要设置为23:59:59.997。

3.2.       分区值第一个值

符合这个值之前的值会被分配到第一个分区中,使用left和right的区别就是这个分区值是被分配到第一个分区还是第二个分区

3.3.       通常情况会以ID(自增)或时间字段作为分区字段

这样的好处就是容易区分历史数据库,而且对分区操作隔离也是最明显的。

3.4.       索引分区

聚集索引进行分区时,聚集键必需包含分区依据列。

对于非唯一的聚集索引进行分区时,如果未在聚集索引键中指定分区依据列,默认情况下SQLServer将在聚集索引键列表中添加分区依据列。如果聚集索引是唯一的,则必需明确指定聚集索引键包含分区依据列。

唯一的非聚集索引进行分区时,索引键必需包含分区依据列,对非唯一的非聚集索引进行分区,默认情况下SQLServer将分区依据列添加为索引的非键列(包含性列),以确保索引与基表对齐。

3.5.       删除分区

删除的这个边界值属于哪个分区就会删除这个分区,再向临近(以这个边界值为临界点的两个分区)的分区合并。

3.6.       索引对齐

索引对齐:如果你想让数据分开到不同的文件可以使用两个不同的分区方案,使用同一分区函数。

存储位置对齐:数据和索引位于同一文件中

4.      动态生成分区脚本

--分区脚本

--定义变量
 
declare @databasename nvarchar(50)--数据库名称
 
declare @tablename nvarchar(50)--表名称
 
declare @columnname nvarchar(50)--字段名称
 
declare @partnumber int--需要分多少个区
 
declare @location nvarchar(50)--保存分区文件的路径
 
declare @size nvarchar(50)--分区初始化大小
 
declare @filegrowth nvarchar(50)--分区文件增量
 
declare @funvalue datetime--分区分段值
 
declare @i int
 
declare @partnumberstr nvarchar(50)
 
declare @sql nvarchar(max)
 
--变量赋值
 
set @databasename = 'mydatabase'
 
set @tablename = 'table_name'
 
set @columnname = 'id'
 
set @partnumber = 4
 
set @location = 'e:\database\'
 
set @size = '30mb'
 
set @filegrowth = '10%'
 
set @funvalue = '20120101'
 
--1.创建文件组
 
set @i = 1
 
while @i   begin
      
set @partnumberstr =  right('0' + convert(nvarchar,@i),2)
      
set @sql = 'alter database ['+@databasename +']
 
add filegroup [fg_'+@tablename+'_'+@columnname+'_'+@partnumberstr+']'
 
    print @sql + char(13)
      
set @i=@i+1
 
end
 
--2.创建文件
 
set @i = 1
 
while @i   begin
      
set @partnumberstr =  right('0' + convert(nvarchar,@i),2)
      
set @sql = 'alter database ['+@databasename +']
 
add file
  (name = n
''fg_'+@tablename+'_'+@columnname+'_'+@partnumberstr+'_data'',filename = n'''+@location+'fg_'+@tablename+'_'+@columnname+'_'+@partnumberstr+'_data.ndf'',size = '+@size+', filegrowth = '+@filegrowth+' )
 
to filegroup [fg_'+@tablename+'_'+@columnname+'_'+@partnumberstr+'];'
 
    print @sql + char(13)
      
set @i=@i+1
 
end
 
--3.创建分区函数
 
declare @funvaluestr nvarchar(max
 
set @i = 1
 
set @funvaluestr = ''
 
while @i   begin
      
set @funvaluestr = @funvaluestr +''''convert(varchar(10),dateadd(year,@i,@funvalue),120)+' 00:00:00.000' + ''','
      
set @i=@i+1
 
end
 
set @funvaluestr = substring(@funvaluestr,1,len(@funvaluestr)-1)
 
set @sql = 'create partition function
 
fun_'+@tablename+'_'+@columnname+'(intas
 
range right
 
for values('+@funvaluestr+')'
 
print @sql + char(13)
 
--4.创建分区方案
 
declare @filegroupstr nvarchar(max
 
set @i = 1
 
set @filegroupstr = ''
 
while @i   begin
      
set @partnumberstr =  right('0' + convert(nvarchar,@i),2)
      
set @filegroupstr = @filegroupstr + '[fg_'+@tablename+'_'+@columnname+'_'+@partnumberstr+'],'
      
set @i=@i+1
 
end
 
set @filegroupstr = substring(@filegroupstr,1,len(@filegroupstr)-1)
 
set @sql = 'create partition scheme
 
sch_'+@tablename+'_'+@columnname+' as
 
partition fun_'+@tablename+'_'+@columnname+'
 
to('+@filegroupstr+')'
 
print @sql + char(13)
 
--5.分区函数的记录数
 
set @sql = 'select $partition.fun_'+@tablename+'_'+@columnname+'('+@columnname+') as partition_num,
 
  min('+@columnname+'as min_value,max('+@columnname+'as max_value,count(1as record_num
 
from dbo.'+@tablename+'
 
group by $partition.fun_'+@tablename+'_'+@columnname+'('+@columnname+')
 
order by $partition.fun_'+@tablename+'_'+@columnname+'('+@columnname+');'
 
print @sql + char(13)

 

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What is the difference between HQL and SQL in Hibernate framework? What is the difference between HQL and SQL in Hibernate framework? Apr 17, 2024 pm 02:57 PM

HQL and SQL are compared in the Hibernate framework: HQL (1. Object-oriented syntax, 2. Database-independent queries, 3. Type safety), while SQL directly operates the database (1. Database-independent standards, 2. Complex executable queries and data manipulation).

Usage of division operation in Oracle SQL Usage of division operation in Oracle SQL Mar 10, 2024 pm 03:06 PM

"Usage of Division Operation in OracleSQL" In OracleSQL, division operation is one of the common mathematical operations. During data query and processing, division operations can help us calculate the ratio between fields or derive the logical relationship between specific values. This article will introduce the usage of division operation in OracleSQL and provide specific code examples. 1. Two ways of division operations in OracleSQL In OracleSQL, division operations can be performed in two different ways.

Comparison and differences of SQL syntax between Oracle and DB2 Comparison and differences of SQL syntax between Oracle and DB2 Mar 11, 2024 pm 12:09 PM

Oracle and DB2 are two commonly used relational database management systems, each of which has its own unique SQL syntax and characteristics. This article will compare and differ between the SQL syntax of Oracle and DB2, and provide specific code examples. Database connection In Oracle, use the following statement to connect to the database: CONNECTusername/password@database. In DB2, the statement to connect to the database is as follows: CONNECTTOdataba

What does the identity attribute in SQL mean? What does the identity attribute in SQL mean? Feb 19, 2024 am 11:24 AM

What is Identity in SQL? Specific code examples are needed. In SQL, Identity is a special data type used to generate auto-incrementing numbers. It is often used to uniquely identify each row of data in a table. The Identity column is often used in conjunction with the primary key column to ensure that each record has a unique identifier. This article will detail how to use Identity and some practical code examples. The basic way to use Identity is to use Identit when creating a table.

Detailed explanation of the Set tag function in MyBatis dynamic SQL tags Detailed explanation of the Set tag function in MyBatis dynamic SQL tags Feb 26, 2024 pm 07:48 PM

Interpretation of MyBatis dynamic SQL tags: Detailed explanation of Set tag usage MyBatis is an excellent persistence layer framework. It provides a wealth of dynamic SQL tags and can flexibly construct database operation statements. Among them, the Set tag is used to generate the SET clause in the UPDATE statement, which is very commonly used in update operations. This article will explain in detail the usage of the Set tag in MyBatis and demonstrate its functionality through specific code examples. What is Set tag Set tag is used in MyBati

How to solve the 5120 error in SQL How to solve the 5120 error in SQL Mar 06, 2024 pm 04:33 PM

Solution: 1. Check whether the logged-in user has sufficient permissions to access or operate the database, and ensure that the user has the correct permissions; 2. Check whether the account of the SQL Server service has permission to access the specified file or folder, and ensure that the account Have sufficient permissions to read and write the file or folder; 3. Check whether the specified database file has been opened or locked by other processes, try to close or release the file, and rerun the query; 4. Try as administrator Run Management Studio as etc.

How to install, uninstall, and reset Windows server backup How to install, uninstall, and reset Windows server backup Mar 06, 2024 am 10:37 AM

WindowsServerBackup is a function that comes with the WindowsServer operating system, designed to help users protect important data and system configurations, and provide complete backup and recovery solutions for small, medium and enterprise-level enterprises. Only users running Server2022 and higher can use this feature. In this article, we will explain how to install, uninstall or reset WindowsServerBackup. How to Reset Windows Server Backup If you are experiencing problems with your server backup, the backup is taking too long, or you are unable to access stored files, then you may consider resetting your Windows Server backup settings. To reset Windows

[Linux system] fdisk related partition commands. [Linux system] fdisk related partition commands. Feb 19, 2024 pm 06:00 PM

fdisk is a commonly used Linux command line tool used to create, manage and modify disk partitions. The following are some commonly used fdisk commands: Display disk partition information: fdisk-l This command will display the partition information of all disks in the system. Select the disk you want to operate: fdisk/dev/sdX Replace /dev/sdX with the actual disk device name you want to operate, such as /dev/sda. Create new partition:nThis will guide you to create a new partition. Follow the prompts to enter the partition type, starting sector, size and other information. Delete Partition:d This will guide you to select the partition you want to delete. Follow the prompts to select the partition number to be deleted. Modify Partition Type: This will guide you to select the partition you want to modify the type of. According to mention

See all articles