最大的网站源码资源下载站,
partitioned table
可伸缩性性是数据库管理系统的一个很重要的方面,在sql server 2005中可伸缩性方面提供了表分区功能。
其实对于有关系弄数据库产品来说,对表、数据库和服务器进行数据分区的从而提供大数据量的支持并不是什么新鲜事,但 sql server 2005 提供了一个新的体系结构功能,用于对数据库中的文件组进行表分区。水平分区可根据分区架构,将一个表划分为几个较小的分组。表分区功能是针对超大型数据库(从数百吉字节到数千吉字节或更大)而设计的。超大型数据库 (vldb) 查询性能通过分区得到了改善。通过对广大分区列值进行分区,可以对数据的子集进行管理,并将其快速、高效地重新分配给其他表。
设想一个大致的电子交易网站,有一个表存储了此网站的历史交易数据,这此数据量可能有上亿条,在以前的sql server版本中存储在一个表中不管对于查询性能还是维护都是件麻烦事,下面我们来看一下在sql server2005怎么提高性能和可管理性:
-- 创建要使用的测试数据库,demo
use [master]
if exists (select name from master.dbo.sysdatabases where name = n'demo')
drop database [demo]
create database [demo]
--由于表分区使用使用新的体系结构,使用文件组来进行表分区,所以我们创建将要用到的6个文件组,来存储6个时间段的交易数据[<2000],[ 2001], [2002], [2003], [2004], [>2005]
alter database demo add filegroup yearfg1;
alter database demo add filegroup yearfg2;
alter database demo add filegroup yearfg3;
alter database demo add filegroup yearfg4;
alter database demo add filegroup yearfg5;
alter database demo add filegroup yearfg6;
-- 下面为这些文件组添加文件来进行物理的数据存储
alter database demo add file (name = 'yearf1', filename = 'c:/advworksf1.ndf') to filegroup yearfg1;
alter database demo add file (name = 'yearf2', filename = 'c:/advworksf2.ndf') to filegroup yearfg2;
alter database demo add file (name = 'yearf3', filename = 'c:/advworksf3.ndf') to filegroup yearfg3;
alter database demo add file (name = 'yearf4', filename = 'c:/advworksf4.ndf') to filegroup yearfg4;
alter database demo add file (name = 'yearf5', filename = 'c:/advworksf5.ndf') to filegroup yearfg5;
alter database demo add file (name = 'yearf6', filename = 'c:/advworksf6.ndf') to filegroup yearfg6;
-- here we associate the partition function to
-- the created filegroup via a partitioning scheme
use demo;
go
-------------------------------------------------------
-- 创建分区函数
-------------------------------------------------------
create partition function yearpf(datetime)
as
range left for values ('01/01/2000'
,'01/01/2001'
,'01/01/2002'
,'01/01/2003'
,'01/01/2004')
-------------------------------------------------------
-- 创建分区架构
-------------------------------------------------------
create partition scheme yearps
as partition yearpf to (yearfg1, yearfg2,yearfg3,yearfg4,yearfg5,yearfg6)
-- 创建使用此schema的表
create table partitionedorders
(
id int not null identity(1,1),
duedate datetime not null,
) on yearps(duedate)
--为此表填充数据
declare @dt datetime
select @dt = '1999-01-01'
--start looping, stop at ending date
while (@dt <= '2005-12-21')
begin
insert into partitionedorders values(@dt)
set @dt=dateadd(yy,1,@dt)
end
-- 现在我们可以看一下我们刚才插入的行都分布在哪个partition
select *, $partition.yearpf(duedate) from partitionedorders
--我们可以看一下我们现在partitionedorders表的数据存储在哪此partition中,以及在这些分区中数据量的分布
select * from sys.partitions where object_id = object_id('partitionedorders')
--
--现在我们设想一下,如果我们随着时间的流逝,现在已经到了2005年,按照我们先前的设定,我们想再想入一个分区,这时是不是重新创建表分区架构然后重新把数据导放到新的分区架构呢,答案是完全不用。下面我们就看如果新加一个分区。
--更改分区架构定义语言,让下一个分区使用和现在已经存在的分区yearfg6分区中,这样此分区就存储了两段partition的数据。
alter partition scheme yearps
next used yearfg6;
--更改分区函数
alter partition function yearpf()
split range ('01/01/2005')
--现在我们可以看一下我们刚才插入的行都分布在哪个partition?
select *, $partition.yearpf(duedate) from partitionedorders
--我们可以看一下我们现在partitionedorders表的数据存储在哪此partition中,以及在这些分区中数据量的分布
select * from sys.partitions where object_id = object_id('partitionedorders')
新闻热点
疑难解答