Changing Default Database File Locations in SQL Server

By Thomas LaRock on December 6, 2013


When you create a database in SQL Server and do not specify a file location for your data and log files SQL Server will rely on the default locations as defined in the server properties. You can see these properties for yourself by right-clicking on the instance name inside of SQL Server Management Studio (SSMS) and navigating to the ‘Database Settings’ tab:

 

 

Default DB File Locations 1

 

If we create a simple database we can verify that the files are written to these directories:

CREATE DATABASE TestFileLoc
GO

SELECT filename
FROM sys.sysaltfiles
WHERE name LIKE 'TestFileLoc%'

Which returns the locations of our data and log files, which we see are the defaults:

 

Default DB File Locations 2

 

Changing the default is easy enough, we can just update the file locations inside of SSMS. I will create two new folders (C:SQLData and C:SQLLogs) to store the data and log files for new databases. It is important to note that updating these locations will NOT migrate the current data and log files to the new directories. These changes will only apply to new databases created from this point forward.

It’s also important to note that storing your data and log files on the same disk is not a recommended practice.

Let’s update the setting to point to the new directories:

 

Default DB File Locations 3

 

Press OK, and we’ll run our create database script again (don’t forget to drop the original database first) to find this result set:

 

Default DB File Locations 4

 

Whoa, what happened here?

Turns out that setting the default database locations requires you to restart the SQL instance in order for those changes to take effect. The reason why is because the default locations are read from registry values.

In fact, after you make your change in the SSMS, hit the little button at the top that says ‘Script’ and check out what is being done behind the scenes:

EXEC xp_instance_regwrite N'HKEY_LOCAL_MACHINE'
	, N'SoftwareMicrosoftMSSQLServerMSSQLServer'
	, N'DefaultData'
	, REG_SZ
	, N'C:SQLData'
GO
EXEC xp_instance_regwrite N'HKEY_LOCAL_MACHINE'
	, N'SoftwareMicrosoftMSSQLServerMSSQLServer'
	, N'DefaultLog'
	, REG_SZ
	, N'C:SQLLogs'
GO

 

Run that, restart the instance, and then run our create database script again. This time you should see the results:

 

Default DB File Locations 5

 

I’d suggest that you configure these directories when you are installing SQL Server. You will find the option for this on the ‘Database Engine Configuration’ screen as follows:

Default DB File Locations 6

 

By doing this during the installation you can avoid the need to restart the service at a later date to make this simple change.

Or you could specify the data and log file locations when creating your database, a good habit that everyone should have! I still prefer to set the default values, in order to help those that might not have good habits formed yet.

 

 

 

Related Posts

Leave a Reply