sqlschool.gr logo

articles

Articles of SQLschool.gr Team

Move a database file (data or log file) to another location

Antonios Chatzipavlis
Friday 21 October 2016

Αρκετές φορές έχω ερωτηθεί για το πώς μπορεί κάποιος να μεταφέρει μια βάση ή ένα αρχείο της (data / log file) από ένα σημείο (disk/folder/…) σε άλλο.

Η εύκολη απάντηση που δίνω καθώς δεν είναι πάντα εύκολο να γνωρίζω τα skills του ερωτώμενου είναι detach & attach database. Αρκετά ξεκάθαρή διαδικασία και χωρίς ίχνος παρερμηνείας.

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

Το τρόπος αυτό είναι ο παρακάτω όπως δείχνω και στο παράδειγμα μου

  • Με ALTER DATABASE λες που θέλεις να πάει το αρχείο
  • Με ALTER DATABASE κάνεις OFFLINE την βάση
  • Κάνεις copy το αρχείο από παλαιό σημείο στο νέο
  • Με ALTER DATABASE κάνεις ONLINE την βάση
USE [master]
GO

-- Sample database
CREATE DATABASE [DemoDB]
 CONTAINMENT = NONE
 ON  PRIMARY 
( NAME = N'DemoDB_data', FILENAME = N'C:\SQLData\DemoDB_data.mdf'  )
 LOG ON 
( NAME = N'DemoDB_log', FILENAME = N'C:\SQLData\DemoDB_log.ldf' )
GO

-- STEP 1
alter database DemoDB
modify file (name='DemoDB_log', filename='C:\SQLData\a\DemoDB_log.ldf');

-- STEP 2
alter database DemoDB set offline;

-- STEP 3
-- copy file 

-- STEP 4
alter database DemoDB set online;

/*antonch*/

Antonios Chatzipavlis

Antonios Chatzipavlis

Antonios Chatzipavlis is a highly experienced Data Solutions Consultant and Trainer. He has been working in the IT industry since 1988, holding various roles such as senior developer, IT Manager, Data & AI Solutions Architect and Consultant.

Since 1995, Antonios has focused on modern technologies and software development tools, primarily by Microsoft. He has specialized in Data & AI since 2000, with expertise in Microsoft Data Platform (SQL Server, Azure SQL Databases, Azure Synapse Analytics, Microsoft Fabric, Power BI, AI) and Databricks.

Antonios is also a Microsoft Certified Trainer (MCT) for over 25 years, has been recognized as a Microsoft Most Valuable Professional (MVP) in Data Platform since 2010 and he is in the Data Expert 40 Powerlist 2024 by Boussias. He is the co-founder and visionary behind XLYTiCA, a company dedicated to Data & AI solutions.

Episode

Task Flows in Microsoft Fabric

image

More Episodes...

Tip

Get Certified: Become a Fabric Data Engineer

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-2025 All rights reserved

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