sqlschool.gr logo

articles

Articles of SQLschool.gr Team

Create re-usable temp table using dynamic T-SQL

Antonios Chatzipavlis
Monday 06 May 2019

Δεν είναι λίγες οι φορές που χρειάζεται να δημιουργήσουμε ένα temp table δυναμικά καθώς δεν γνωρίζουμε εξ’ αρχής την δομή του είτε σε μια stored procedure είτε σε ένα script. Η επιλογή είναι μονόδρομος και είναι με την χρήση dynamic T-SQL με ένα τρόπο όπως ο παρακάτω

declare @sql1 nvarchar(max)=N'create table #X (col1 int, col2 int )';

exec (@sql1);

Με το παραπάνω κώδικα μπορούμε να δημιουργήσουμε όπως θέλουμε το table αλλά αν πάμε ακριβώς μετά να το χρησιμοποιήσουμε εκτός του dynamic execution context θα λάβουμε μήνυμα λάθους όπως παρακάτω:


declare @sql1 nvarchar(max)=N'create table #X (col1 int, col2 int )';

exec (@sql1);

select * from #X;

-- ERROR MESSAGE
Msg 208, Level 16, State 0, Line 5
Invalid object name '#X'.

Αυτό είναι κάτι που αρκετοί το χαρακτηρίζουν έλλειψη και ίσως από μια άποψη να είναι όμως πρέπει να γίνει κατανοητό ότι η εκτέλεση ενός dynamic script δημιουργεί κατά την εκτέλεση ένα διαφορετικό context και οποιοδήποτε temp object έχει σαν scope αυτό και μόνο.

Για αυτό το λόγο οι περισσότερες υλοποιήσεις που έχω δει δημιουργούν normal tables με ονόματα συνδυαστικά είτε με τον user είτε με το session id ή με κάποιο guid. Σε κάθε περίπτωση αυτό όμως σημαίνει ότι αν δεν γίνει σωστή διαχείριση σε αυτά θα αυξηθεί ο αριθμός των tables που πρακτικά είναι άχρηστα και καταλαμβάνουν χώρο της database.

Για την αντιμετώπιση αυτού του θέματος έχουμε λύση που δεν είναι άλλη από το να δημιουργούμε ένα signature του temp table εκτός του dynamic content και στο dynamic content κάνουμε alter table προσθέτοντας τα columns που θέλουμε και μετά κάνουμε drop column αυτό που είχαμε βάλει στο signature.


create table #X (temp_col1 int);

declare @sql1 nvarchar(max)=N'alter table #X add col1 int, col2 int ';

exec (@sql1);

alter table #x drop column temp_col1;

select * from #X;

Μια τέτοια υλοποίηση μπορείτε να δείτε στο άρθρο μου αυτό που ήταν και η αφορμή για αυτό το άρθρο καθώς είχα κάποιες ερωτήσεις για το συγκεκριμένο τμήμα του κώδικα


//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.

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.