sqlschool.gr logo

articles

Articles of SQLschool.gr Team

Move object(s) to another schema

Antonios Chatzipavlis
Thursday 28 January 2021

Από τον SQL Server 2005 έχουμε την ξεκάθαρη δυνατότητα χρήσης των schemas που μας δίνουν πολλές δυνατότητες με κυρίαρχη αυτή του security granularity (ΙΜΗΟ).

Η ένταξη ενός object (table, view, sp, function κλπ.) σε ένα schema γίνεται κατά την δημιουργία αυτού βάζοντας μπροστά από το object name το schema name.

Αν μετά από την δημιουργία του object επιθυμεί κάποιος να μεταφέρει αυτό σε άλλο schema μια λύση είναι να το σβήσει και να το δημιουργήσει ξανά στο schema που επιθυμεί.

Αυτό δεν είναι το καλύτερο διότι αν το object είναι table που περιέχει δεδομένα αυτό σημαίνει ότι πρέπει να δημιουργηθεί διαδικασία τέτοια που να διασφαλίζει την μη απώλεια δεδομένων.

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

SQL Script

ALTER SCHEMA <destination_schema> TRANSFER <orginal_schema_name>.<original_object_name>

Αν κάποιος τώρα έχει πολλά objects που πρέπει να μεταφέρει, το παρακάτω script δημιουργεί τα απαιτούμενα ALTER SCHEMA statements χρησιμοποιώντας το sys.objects και τα κατάλληλα κριτήρια για τον εντοπισμό αυτών που θέλει. Στο script για παράδειγμα ζητάω μόνο τα tables.

SQL Script

declare        @crlf           char(2) = char(13)+char(10);
declare        @tab            char(1) = char(9);
declare        @scriptout      varchar(max)='';
declare        @dest_schema    varchar(20)='dbo';

select    @scriptout +='ALTER SCHEMA ' + QUOTENAME(@dest_schema) 
                     + ' TRANSFER '+ QUOTENAME(SCHEMA_NAME(schema_id)) 
                     + '.' + QUOTENAME(name) +';' + @crlf
from    sys.objects
where    type='U'
        and
        schema_id <> SCHEMA_ID(@dest_schema);


-- script final output
select @scriptout FOR XML PATH(''); 

//Antonios Chatzipavlis


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.