यहां एक तालिका में रिकॉर्ड्स को कम करने का एक अच्छा तरीका है जिसमें एक वांछित प्राथमिक कुंजी के आधार पर एक पहचान कॉलम है जिसे आप रनटाइम पर परिभाषित कर सकते हैं। शुरू करने से पहले मैं निम्नलिखित कोड का उपयोग करके काम करने के लिए सेट किए गए एक नमूना डेटा को पॉप्युलेट करूंगा:
if exists (select 1 from sys.all_objects where type='u' and name='_original')
drop table _original
declare @startyear int = 2017
declare @endyear int = 2018
declare @iterator int = 1
declare @income money = cast((SELECT round(RAND()*(5000-4990)+4990 , 2)) as money)
declare @salesrepid int = cast(floor(rand()*(9100-9000)+9000) as varchar(4))
create table #original (rowid int identity, monthyear varchar(max), salesrepid int, sale money)
while @iterator<=50000 begin
insert #original
select (Select cast(floor(rand()*(@endyear-@startyear)+@startyear) as varchar(4))+'-'+ cast(floor(rand()*(13-1)+1) as varchar(2)) ), @salesrepid , @income
set @salesrepid = cast(floor(rand()*(9100-9000)+9000) as varchar(4))
set @income = cast((SELECT round(RAND()*(5000-4990)+4990 , 2)) as money)
set @iterator=@iterator+1
end
update #original
set monthyear=replace(monthyear, '-', '-0') where len(monthyear)=6
select * into _original from #original
आगे मैं एक प्रकार बनाऊंगा जिसका नाम ColumnNames है:
create type ColumnNames AS table
(Columnnames varchar(max))
अंत में मैं निम्नलिखित 3 कैविट्स के साथ एक संग्रहित खरीद बनाऊंगा: 1. यह खरीद एक आवश्यक पैरामीटर लेगा @tablename जो आपके डेटाबेस से हटाए जा रहे टेबल के नाम को परिभाषित करता है। 2. खरीद में एक वैकल्पिक पैरामीटर @columns है जिसका उपयोग आप उन फ़ील्ड को परिभाषित करने के लिए कर सकते हैं जो इच्छित प्राथमिक कुंजी बनाते हैं जिसे आप के खिलाफ हटा रहे हैं। यदि यह फ़ील्ड खाली छोड़ दी जाती है, तो यह माना जाता है कि पहचान कॉलम के अलावा सभी फ़ील्ड वांछित प्राथमिक कुंजी बनाते हैं। 3. जब डुप्लिकेट रिकॉर्ड हटा दिए जाते हैं, तो पहचान कॉलम में सबसे कम मूल्य के साथ रिकॉर्ड बनाए रखा जाएगा।
यहाँ मेरा delete_dupes संग्रहित proc है:
create proc delete_dupes (@tablename varchar(max), @columns columnnames readonly)
as
begin
declare @table table (iterator int, name varchar(max), is_identity int)
declare @tablepartition table (idx int identity, type varchar(max), value varchar(max))
declare @partitionby varchar(max)
declare @iterator int= 1
if exists (select 1 from @columns) begin
declare @columns1 table (iterator int, columnnames varchar(max))
insert @columns1
select 1, columnnames from @columns
set @partitionby = (select distinct
substring((Select ', '+t1.columnnames
From @columns1 t1
Where T1.iterator = T2.iterator
ORDER BY T1.iterator
For XML PATH ('')),2, 1000) partition
From @columns1 T2 )
end
insert @table
select 1, a.name, is_identity from sys.all_columns a join sys.all_objects b on a.object_id=b.object_id
where b.name = @tablename
declare @identity varchar(max)= (select name from @table where is_identity=1)
while @iterator>=0 begin
insert @tablepartition
Select distinct case when @iterator=1 then 'order by' else 'over (partition by' end ,
substring((Select ', '+t1.name
From @table t1
Where T1.iterator = T2.iterator and is_identity=@iterator
ORDER BY T1.iterator
For XML PATH ('')),2, 5000) partition
From @table T2
set @iterator=@iterator-1
end
declare @originalpartition varchar(max)
if @partitionby is null begin
select @originalpartition = replace(b.value+','+a.type+a.value ,'over (partition by','') from @tablepartition a cross join @tablepartition b where a.idx=2 and b.idx=1
select @partitionby = a.type+a.value+' '+b.type+a.value+','+b.value+') rownum' from @tablepartition a cross join @tablepartition b where a.idx=2 and b.idx=1
end
else
begin
select @originalpartition=b.value +','+ @partitionby from @tablepartition a cross join @tablepartition b where a.idx=2 and b.idx=1
set @partitionby = (select 'OVER (partition by'+ @partitionby + ' ORDER BY'+ @partitionby + ','+b.value +') rownum'
from @tablepartition a cross join @tablepartition b where a.idx=2 and b.idx=1)
end
exec('select row_number() ' + @partitionby +', '+@originalpartition+' into ##temp from '+ @tablename+'')
exec(
'delete a from _original a
left join ##temp b on a.'+@identity+'=b.'+@identity+' and rownum=1
where b.rownum is null')
drop table ##temp
end
एक बार इसका अनुपालन हो जाने के बाद, आप खरीद को चलाकर अपने सभी डुप्लिकेट रिकॉर्ड को हटा सकते हैं। वांछित प्राथमिक कुंजी को परिभाषित किए बिना डुप्लिकेट को हटाने के लिए इस कॉल का उपयोग करें:
exec delete_dupes '_original'
परिभाषित कॉल के आधार पर डुप्लिकेट हटाने के लिए इस कॉल का उपयोग करें:
declare @table1 as columnnames
insert @table1
values ('salesrepid'),('sale')
exec delete_dupes '_original' , @table1