কোনও রান্নার সময় আপনি সংজ্ঞায়িত করতে পারেন এমন একটি পছন্দসই প্রাথমিক কী এর উপর ভিত্তি করে একটি পরিচয় কলাম রয়েছে এমন একটি সারণীতে রেকর্ডগুলি নকল করার একটি দুর্দান্ত উপায়'s আমি শুরু করার আগে আমি নীচের কোডটি ব্যবহার করে কাজ করতে একটি নমুনা ডেটা সেট পপুলেট করব:
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
while @iterator<=50000 begin
insert
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
set monthyear=replace(monthyear, '-', '-0') where len(monthyear)=6
select * into _original from
এরপরে আমি একটি প্রকার তৈরি করব যার নাম কলামোনাম:
create type ColumnNames AS table
(Columnnames varchar(max))
পরিশেষে আমি নিম্নলিখিত 3 ক্যাভ্যাট সহ একটি সঞ্চিত সংগ্রহ তৈরি করব: 1. প্রোক একটি প্রয়োজনীয় প্যারামিটার নেবে @ টেবিলনাম যা আপনার ডাটাবেসে সারণীর নামটি নির্ধারণ করবে। ২. প্রোকটির একটি বিকল্প প্যারামিটার রয়েছে ol কলামগুলি যা আপনি যে ক্ষেত্রগুলি মুছে ফেলতে চান তা পছন্দসই প্রাথমিক কী তৈরি করে ine যদি এই ক্ষেত্রটি ফাঁকা ছেড়ে যায়, তবে ধারণা করা হয় যে পরিচয় কলামের পাশাপাশি সমস্ত ক্ষেত্রগুলি পছন্দসই প্রাথমিক কী তৈরি করে। ৩. সদৃশ রেকর্ডগুলি মুছে ফেলা হলে, এটির পরিচয় কলামের সর্বনিম্ন মান সহ রেকর্ডটি বজায় রাখা হবে।
এখানে আমার মুছে ফেলা_ডিপস সংরক্ষণ করা আছে:
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
end
এটি একবার মেনে চলার পরে, আপনি প্রোক চালিয়ে আপনার সমস্ত সদৃশ রেকর্ড মুছতে পারেন। কোনও পছন্দসই প্রাথমিক কীটি সংজ্ঞায়িত না করে ডুপগুলি মুছতে এই কলটি ব্যবহার করুন:
exec delete_dupes '_original'
একটি সংজ্ঞায়িত কাঙ্ক্ষিত প্রাথমিক কীটির উপর ভিত্তি করে ডুপগুলি মুছতে এই কলটি ব্যবহার করুন:
declare @table1 as columnnames
insert @table1
values ('salesrepid'),('sale')
exec delete_dupes '_original' , @table1