SQL資料庫的表分割槽

2021-06-02 16:53:22 字數 1027 閱讀 6109

學習sql資料庫的表分割槽 不錯的文章

sql資料庫的表分割槽

--建立分割槽函式

create partition function partfuncforexample(datetime)

as range right for values('20000101','20010101','20020101','20030101')

exec dbo.sp_show_partition_range @partition_function = 'partfuncforexample'

sp_show_partition_range 儲存過程這裡可以找到:

--建立分割槽方案

create partition scheme partschforexample

as partition partfuncforexample

to([primary],partition1,partition2,partition3,partition4 )

--建立表

create table partitiontable(

[id] [int] identity(1,1) not null,

[name] [nvarchar](50) not null,

[logindate] [datetime] not null

) on partschforexample([logindate])

select * from partitiontable

insert into partitiontable values('test1','2002-01-04')

--建立分割槽索引

create clustered index ixc_partitiontable_logindate on dbo.partitiontable(logindate)

on partschforexample(logindate)

sql資料庫的表分割槽之------如何設計合理的多表關聯的表分割槽

資料庫表分割槽

create database mytest on sql server 資料庫表分割槽由三個步驟來完成 1.建立分割槽函式 2.建立分割槽架構 3.對錶進行分割槽 1.0建立表分割槽函式 create partition function mypartfunc int as range right...

資料庫表分割槽

實現資料庫表分割槽步驟 1,檢視資料庫檔案儲存位置 select from v datafile 2,在伺服器上資料庫儲存位置上,新建表空間檔案 touch d part1.dbf touch d part2.dbf 第二種方式 在plsql或oracle命令端,建立表空間 3,建立表,並根據型別分...

資料庫表分割槽

create database mytest on sql server 資料庫表分割槽由三個步驟來完成 1.建立分割槽函式 2.建立分割槽架構 3.對錶進行分割槽 1.0建立表分割槽函式 create partition function mypartfunc int as range right...