日韩久久久精品,亚洲精品久久久久久久久久久,亚洲欧美一区二区三区国产精品 ,一区二区福利

SQL Server 普通表Switch到分區(qū)表問題

系統(tǒng) 2289 0
      
        這問題今天糾結(jié)了我一天了。
      
    
      
        下面的代碼是網(wǎng)上轉(zhuǎn)載來的
      
    
      
        create
      
       partition 
      
        function
      
       PF_Orders_OrderDateRange(
      
        datetime
      
      )
      
as
range right for values (
' 1997-01-01 ' ,
' 1998-01-01 ' ,
' 1999-01-01 '
)
go
-- 創(chuàng)建分區(qū)方案
create partition scheme PS_Orders
as
partition PF_Orders_OrderDateRange
to ( [ primary ] , [ primary ] , [ primary ] , [ primary ] )
go
-- 創(chuàng)建分區(qū)表
sp_rename ' dbo.Orders ' , ' Orders_From_SQL2000_Northwind '

create table dbo.Orders
(
OrderID int not null
,CustomerID varchar ( 10 ) not null
,EmployeeID int not null
,OrderDate datetime not null
)
on PS_Orders(OrderDate)
go
-- 創(chuàng)建聚集分區(qū)索引
create clustered index IXC_Orders_OrderDate on dbo.Orders(OrderDate)
go
-- 為分區(qū)表設(shè)置主鍵
alter table dbo.Orders add constraint PK_Orders
primary key (OrderID, CustomerID, OrderDate)
go
-- 導(dǎo)入數(shù)據(jù)到分區(qū)表
insert into dbo.Orders
select OrderID, CustomerID, EmployeeID, OrderDate
from dbo.Orders_From_SQL2000_Northwind -- (注:數(shù)據(jù)來源于 SQL Server 2000 示例數(shù)據(jù)庫)
go
-- 查看分區(qū)表每個分區(qū)的數(shù)據(jù)分布情況
select partition = $partition.PF_Orders_OrderDateRange(OrderDate)
,rows = count ( * )
,minval = min (OrderDate)
,maxval = max (OrderDate)
from dbo.Orders
group by $partition.PF_Orders_OrderDateRange(OrderDate)
order by partition
GO

create table dbo.Orders_1998
(
OrderID int not null
,CustomerID varchar ( 10 ) not null
,EmployeeID int not null
,OrderDate datetime not null
) on [ primary ]
go
create clustered index IXC_Orders1998_OrderDate on dbo.Orders_1998(OrderDate)
go
alter table dbo.Orders_1998 add constraint PK_Orders_1998
primary key nonclustered (OrderID, CustomerID, OrderDate)
go
alter table dbo.Orders switch partition 3 to dbo.Orders_1998
go
alter table dbo.Orders_1998 add constraint CK_Orders1998_OrderDate
check (OrderDate >= ' 1998-01-01 ' and OrderDate < ' 1999-01-01 ' )
go
alter table dbo.Orders_1998 switch to dbo.Orders partition 3

這段代碼是沒問題的,普通表能成功的switch 分區(qū)表。但是有一點(diǎn)要注意:分區(qū)字段為 not null。如果你改為null 不好意思 switch 不了。

只能出不能進(jìn)。

SQL Server 普通表Switch到分區(qū)表問題


更多文章、技術(shù)交流、商務(wù)合作、聯(lián)系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯(lián)系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點(diǎn)擊下面給點(diǎn)支持吧,站長非常感激您!手機(jī)微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點(diǎn)擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦!?。?/p>

發(fā)表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 浑源县| 汶川县| 玉溪市| 城市| 中卫市| 邢台县| 丘北县| 通山县| 伊川县| 平果县| 容城县| 明星| 达日县| 吉木乃县| 侯马市| 沙田区| 浦江县| 凤城市| 唐山市| 岑溪市| 咸宁市| 山西省| 元谋县| 浦县| 法库县| 德保县| 德格县| 廊坊市| 枣阳市| 麟游县| 航空| 固阳县| 博湖县| 新平| 徐州市| 盐山县| 达孜县| 宝鸡市| 宁德市| 呼和浩特市| 泌阳县|