溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

數(shù)據(jù)庫(kù)中如何自動(dòng)創(chuàng)建分區(qū)函數(shù)并按月分區(qū)

發(fā)布時(shí)間:2021-11-09 14:05:14 來(lái)源:億速云 閱讀:297 作者:小新 欄目:關(guān)系型數(shù)據(jù)庫(kù)

小編給大家分享一下數(shù)據(jù)庫(kù)中如何自動(dòng)創(chuàng)建分區(qū)函數(shù)并按月分區(qū),希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

/*--------------------創(chuàng)建數(shù)據(jù)庫(kù)的文件組和物理文件------------------------*/
declare  @tableName varchar(50),  @fileGroupName varchar(50),  @ndfName varchar(50),  @newNameStr varchar(50),  @fullPath 
varchar(50),  @newDay varchar(50),  @oldDay datetime,  @partFunName varchar(50),  @schemeName varchar(50),
@sqlstr varchar(1000)


set @tableName='DYDB'
set @newDay=CONVERT(varchar(10),DATEADD(mm, DATEDIFF(mm,0,getdate()), 0), 23 )--CONVERT(varchar(100), GETDATE(), 23)--23:按天 114:按時(shí)間
set @oldDay=cast(CONVERT(varchar(10),DATEADD(mm, DATEDIFF(mm,0,getdate())-1, 0), 112 ) as datetime)
set @newNameStr=left(Replace(Replace(@newDay,':','_'),'-','_'),7)
set @fileGroupName=N'G'+@newNameStr
set @ndfName=N'F'+@newNameStr+''
set @fullPath=N'E:\\SQLDataBase\\UserData\\'+@ndfName+'.ndf'
set @partFunName=N'pf_Time'
set @schemeName=N'ps_Time'




print @fullPath
print @fileGroupName
print @ndfName




--創(chuàng)建文件組
if exists(select * from sys.filegroups where name=@fileGroupName)
begin
print '文件組存在,不需添加'
end
else
begin
--exec('ALTER DATABASE '+@tableName+' ADD FILEGROUP ['+@fileGroupName+']')
print 'exec '+('ALTER DATABASE '+@tableName+' ADD FILEGROUP ['+@fileGroupName+']')
print '新增文件組'
if exists(select * from sys.partition_schemes where name =@schemeName)
begin
--exec('alter partition scheme '+@schemeName+'  next used ['+@fileGroupName+']')
print 'exec '+('alter partition scheme '+@schemeName+'  next used ['+@fileGroupName+']')
print '修改分區(qū)方案'
end


print 'exec '+('alter partition scheme '+@schemeName+'  next used ['+@fileGroupName+']')
print '修改分區(qū)方案'


if exists(select * from sys.partition_range_values where function_id=(select function_id from 
sys.partition_functions where name =@partFunName) and value=@oldDay)
begin
--exec('alter partition function  '+@partFunName+'() split range('''+@newDay+''')')
print 'exec '+('alter partition function  '+@partFunName+'() split range('''+@newDay+''')')
print '修改分區(qū)函數(shù)'
end
end


--創(chuàng)建NDF文件
if exists(select * from sys.database_files where [state]=0 and (name=@ndfName or physical_name=@fullPath))
begin
print 'ndf文件存在,不需添加'
end
else
begin
--exec('ALTER DATABASE '+@tableName+'ADD FILE (NAME ='+@ndfName+',FILENAME = '''+@fullPath+''')TO FILEGROUP ['+@fileGroupName+']')
print 'ALTER DATABASE '+@tableName+' ADD FILE (NAME ='+@ndfName+',FILENAME = '''+@fullPath+''')TO FILEGROUP ['+@fileGroupName+']'


print '新創(chuàng)建ndf文件'
end
--/*--------------------以上創(chuàng)建數(shù)據(jù)庫(kù)的文件組和物理文件------------------------*/




--分區(qū)函數(shù)
if exists(select * from sys.partition_functions where name =@partFunName)
begin
print '此處修改需要在修改分區(qū)函數(shù)之前執(zhí)行'
end
else
begin
--exec('CREATE PARTITION FUNCTION '+@partFunName+'(DateTime)AS RANGE RIGHT FOR VALUES ('''+@newDay+''')')
print 'CREATE PARTITION FUNCTION '+@partFunName+'(DateTime)AS RANGE RIGHT FOR VALUES ('''+@newDay+''')'
print '新創(chuàng)建分區(qū)函數(shù)'
end
--分區(qū)方案
if exists(select * from sys.partition_schemes where name =@schemeName)
begin
print '此處修改需要在修改分區(qū)方案之前執(zhí)行'
end
else
begin
--exec('CREATE PARTITION SCHEME '+@schemeName+' AS PARTITION '+@partFunName+' TO (''PRIMARY'','''+@fileGroupName+''')')
print ('CREATE PARTITION SCHEME '+@schemeName+' AS PARTITION '+@partFunName+' TO (''PRIMARY'','''+@fileGroupName+''')')
print '新創(chuàng)建分區(qū)方案'
end
--print '---------------以下是變量定義值顯示---------------------'
--print '當(dāng)前數(shù)據(jù)庫(kù):'+@tableName
--print '當(dāng)前日期:'+@newDay+'(用作隨機(jī)生成的各種名稱和分區(qū)界限)'
--print '合法命名方式:'+@newNameStr
--print '文件組名稱:'+@fileGroupName
--print 'ndf物理文件名稱:'+@ndfName
--print '物理文件完整路徑:'+@fullPath
--print '分區(qū)函數(shù):'+@partFunName
--print '分區(qū)方案:'+@schemeName
--/*

寫成SP

--select @@servername




alter procedure sp_maintain_partion_fg (
@tableName varchar(50),
@inputdate datetime  
)
as begin
declare
@fileGroupName varchar(50),
@ndfName varchar(50),  
@newNameStr varchar(50),  
@fullPath varchar(50),  
@newDay varchar(50),  
@oldDay datetime,  
@partFunName varchar(50),  
@schemeName varchar(50),
@sqlstr varchar(1000)


--set @tableName='DYDB'
set @newDay=CONVERT(varchar(10),DATEADD(mm, DATEDIFF(mm,0,@inputdate), 0), 23 )--CONVERT(varchar(100), @inputdate, 23)--23:按天 114:按時(shí)間
set @oldDay=cast(CONVERT(varchar(10),DATEADD(mm, DATEDIFF(mm,0,@inputdate)-1, 0), 112 ) as datetime)
set @newNameStr=left(Replace(Replace(@newDay,':','_'),'-','_'),7)
set @fileGroupName=N'G'+@newNameStr
set @ndfName=N'F'+@newNameStr+''
set @fullPath=N'E:\\SQLDataBase\\UserData\\'+@ndfName+'.ndf'
set @partFunName=N'pf_Time'
set @schemeName=N'ps_Time'




print @fullPath
print @fileGroupName
print @ndfName




--創(chuàng)建文件組
if exists(select * from sys.filegroups where name=@fileGroupName)
begin
print '文件組存在,不需添加'
end
else
begin
--exec('ALTER DATABASE '+@tableName+' ADD FILEGROUP ['+@fileGroupName+']')
print 'exec '+('ALTER DATABASE '+@tableName+' ADD FILEGROUP ['+@fileGroupName+']')
print '新增文件組'
if exists(select * from sys.partition_schemes where name =@schemeName)
begin
--exec('alter partition scheme '+@schemeName+'  next used ['+@fileGroupName+']')
print 'exec '+('alter partition scheme '+@schemeName+'  next used ['+@fileGroupName+']')
print '修改分區(qū)方案'
end


print 'exec '+('alter partition scheme '+@schemeName+'  next used ['+@fileGroupName+']')
print '修改分區(qū)方案'


if exists(select * from sys.partition_range_values where function_id=(select function_id from 
sys.partition_functions where name =@partFunName) and value=@oldDay)
begin
--exec('alter partition function  '+@partFunName+'() split range('''+@newDay+''')')
print 'exec '+('alter partition function  '+@partFunName+'() split range('''+@newDay+''')')
print '修改分區(qū)函數(shù)'
end
end


--創(chuàng)建NDF文件
if exists(select * from sys.database_files where [state]=0 and (name=@ndfName or physical_name=@fullPath))
begin
print 'ndf文件存在,不需添加'
end
else
begin
--exec('ALTER DATABASE '+@tableName+'ADD FILE (NAME ='+@ndfName+',FILENAME = '''+@fullPath+''')TO FILEGROUP ['+@fileGroupName+']')
print 'ALTER DATABASE '+@tableName+' ADD FILE (NAME ='+@ndfName+',FILENAME = '''+@fullPath+''')TO FILEGROUP ['+@fileGroupName+']'


print '新創(chuàng)建ndf文件'
end
--/*--------------------以上創(chuàng)建數(shù)據(jù)庫(kù)的文件組和物理文件------------------------*/
end




----分區(qū)函數(shù)
--if exists(select * from sys.partition_functions where name =@partFunName)
--begin
--print '此處修改需要在修改分區(qū)函數(shù)之前執(zhí)行'
--end
--else
--begin
----exec('CREATE PARTITION FUNCTION '+@partFunName+'(DateTime)AS RANGE RIGHT FOR VALUES ('''+@newDay+''')')
--print 'CREATE PARTITION FUNCTION '+@partFunName+'(DateTime)AS RANGE RIGHT FOR VALUES ('''+@newDay+''')'
--print '新創(chuàng)建分區(qū)函數(shù)'
--end
----分區(qū)方案
--if exists(select * from sys.partition_schemes where name =@schemeName)
--begin
--print '此處修改需要在修改分區(qū)方案之前執(zhí)行'
--end
--else
--begin
----exec('CREATE PARTITION SCHEME '+@schemeName+' AS PARTITION '+@partFunName+' TO (''PRIMARY'','''+@fileGroupName+''')')
--print ('CREATE PARTITION SCHEME '+@schemeName+' AS PARTITION '+@partFunName+' TO (''PRIMARY'','''+@fileGroupName+''')')
--print '新創(chuàng)建分區(qū)方案'
--end

--exec sp_maintain_partion_fg 'XXXX','2013-03-20'

看完了這篇文章,相信你對(duì)“數(shù)據(jù)庫(kù)中如何自動(dòng)創(chuàng)建分區(qū)函數(shù)并按月分區(qū)”有了一定的了解,如果想了解更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI