sqlschool.gr logo

articles

Articles of SQLschool.gr Team

How to truncate and save truncated data simultaneously

Antonios Chatzipavlis
Sunday 25 February 2018

Δεν είναι λίγες οι φορές που χρειάζεται να σβήσεις όλα τα δεδομένα από ένα table αλλά πριν το κάνεις αυτό χρειάζεται να τα φυλάξεις κάπου αλλού για διάφορους λόγους.

Μια τέτοια εργασία ειδικά σε μεγάλα table απαιτεί χρόνο και πολλά locks καθώς θα πρέπει να κάνεις την μεταφορά με ένα SELECT INTO FROM statement και μετά να κάνεις το TRUNCATE.

Υπάρχει και άλλος όμως τρόπος αρκετά γρηγορότερος και σαφώς με λιγότερα locks και αυτός δεν είναι άλλος από SWITCH partitions καθώς όλα τα tables έχουν ένα partition.

To πως μπορείτε να το κάνετε αυτό;

Αρχικά ας φτιάξουμε ένα table (S) που θα παίξει το ρόλο του table που θέλουμε να διαγράψουμε τα δεδομένα του οποίος έχει ένα clustered και ένα nonclustered index και να το γεμίζουμε με 1.000.000 γραμμές. Να τονίζω ότι έτσι όπως έχω δημιουργήσει το table κάθε γραμμή είναι ένα data page.

create database TruncateSaveDemo;
go

use TruncateSaveDemo;
go

create table S 
(
    col1 int identity(1,1) not null,
    col2 int not null ,
    col3 char(8000) not null
);
go

create clustered index cidx on S(col1);
go

create index idx on S(col2);
go

set nocount on;
declare @i int = 0
while (@i<=1000000)
begin
    set @i+=1
    insert into S(col2,col3) values (@i,REPLICATE('a',8000))
end
go

Αυτό τον πίνακα θέλουμε να κάνουμε truncate αλλά ταυτόχρονα να κρατήσουμε τα δεδομένα του.

Αυτό που χρειάζεται να κάνουμε είναι να φτιάξουμε ένα αντίγραφο του (table T) το οποίο θα πρέπει να είναι στο ίδιο filegroup με τον αρχικό και να έχει ακριβώς τους ίδιους indexes.

create table T
(
    col1 int identity(1,1) not null,
    col2 int not null ,
    col3 char(8000) not null
);
go

create clustered index cidx on T(col1);
go

create index idx on T(col2);
go

Για να κάνουμε την διαγραφή και μεταφορά απλά χρειάζεται να κάνουμε SWITCH partition με την παρακάτω εντολή η οποία διαρκεί milliseconds αρκεί να μην έχει κάποιος σε χρήση τον πίνακα S.

alter table S switch to T;
go

Αυτό ήταν έχουμε διαγράψει τα δεδομένα μας από τον S και αυτά είναι πλέον στο T


//antonch


Antonios Chatzipavlis

Antonios Chatzipavlis

Antonios is a Data Solutions Consultant and Trainer. He has been working in IT since 1988. In his career, he has worked as senior developer, IT Manager, Solutions Architect and IT Consultant. Since 1995 he has been devoted on new technologies and software development tools, mainly by Microsoft, either by training company staff and colleagues or assisting them in design, development and implementation as a consultant or chief developer. He has focused in Databases and Data Science since 1995. He specialized in Microsoft SQL Server since version 6.0 in areas like SQL Server Internals, Database Design and Development, Business Intelligence and in 2010 he has started working with Azure Data Platform, NoSQL databases, Big Data Technologies and Machine Learning. He is an active member of many IT communities in Greece, answering colleagues' questions and writing articles in his web site. He is the owner of SQLschool.gr which is a community portal with a lot of information about Microsoft SQL Server. He has been a Microsoft Certified Trainer (MCT) since 2000. Microsoft honored him as MVP on Data Platform due to his activities in SQL Server since 2010. He holds a large number of Microsoft Certifications and Microsoft SQL Server Certifications since version 6.5.

Episode

First look: SQL Database in Microsoft Fabric

image

More Episodes...

Tip

What's New in SQL Server 2022 - Episodes

More Tips...

Become a member

If you want to receive updates from us become a member to our community.

Connect

Explore

Learn


sqlschool.gr © 2010-2024 All rights reserved

This site uses cookies for operational and analytics purposes only. By continuing to browse this site, you agree to their use.