Nisarg Upadhyay
Attach database screen for the mdf file

Different methods to attach SQL Server MDF files

February 7, 2020 by

This article demonstrates different methods to attach SQL Server MDF files. First, let me explain about the database files.

A SQL Server database has three types of files:

  1. Primary Data File OR MDF File
  2. Secondary data file OR NDF File
  3. Log File OR LOG File

Primary data file OR MDF file

The SQL Server database stores data in MDF files. Typically, .mdf is a preferred extension of the primary database file. It is not a type of file. You can use another extension (*.gbn) to create a primary database file without any error. The primary data file contains columns, fields, rows, indexes, tables, and data added by an application. It also contains the vital information of the database.

Secondary data file OR NDF file

The secondary datafiles are optional. The purpose of the primary data file and secondary data file (.ndf file) are the same. Secondary data files are useful when we want to stripe the data across multiple drives of the database server. For example, if you want to keep the tables on X drive and indexes on Y drive, then you can keep the tables on the primary data file and indexes on the secondary data file.

Log file OR LDF file

It stores the changes made in the database by insert, update, delete, etc. LDF file has all the information that can be used to recover a database.

How to find the location of the MDF files

We can obtain the location of the database files by querying sys.database_files and sys.master_files dynamic management views. The difference is between sys.master_files provides the physical location of all the databases and sys.database_files provides the information of the specific database.

For the demonstration, I have restored the “WideWorldImportors” demo database. You can download it from here. Now to obtain the location of database files from sys.master_files DMV, execute the following query.

Following is the screenshot of the output:

Obtain database file name using sys.master_files

To obtain the information of the database files from sys.database_files DMV, execute following query:

Obtain database file name using sys.database_files

To view the database files location using SQL Server management studio, open SSMS Connect the database engine Expand databases right-click on “WideWorldImportors” Select properties. See the following image:

Open database properties

In properties, select files. In “Path” and “File Name” columns show the location of the database files. See the following image:

Database properties

We can attach the SQL Server database files using the following methods:

  1. Using the SQL Server Management Studio
  2. Using T-SQL Script

Attach MDF File using SSMS

To attach a database using SSMS, first, open SSMS connect to the database engine Right-click on “databases” select “Attach.” See the following image:

Attach database

On the Attach Database dialog box, click on Add (Screen 1). On locate database dialog box (Screen 2), locate the database MDF files which you want to use to create the database. By default, the “locate database files” dialog box uses the default database file location, but you can navigate to the other location of the database file or provide the location in the “database data file location” textbox. Select the desired database file and click OK. See the following image:

Locate database mdf file

On attach database file dialog box, you can review the database details in “Database to attach” and database file details in the “AdventureWorks2017 database details” box. See the following image:

Attach database screen for the mdf file

Click on OK to attach the database. Once the database attaches successfully, you can view the database in object explorer. See the following image:

new database has been attached

Attach MDF File using T-SQL Query

We can also attach the database using “CREATE DATABASE.. WITH ATTACH” or “exec sp_attach_db” T-SQL commands. The syntax of “CREATE DATABASE.. WITH ATTACH” command is as follows:

For example, if you want to attach the AdventureWorks2017 database, you must execute the following command.

The syntax of the “exec sp_attach_db” command is as following:

We can attach the adventureworks2017 database by executing following query:

Troubleshooting errors while attaching the MDF files

While attaching the database, you might encounter any of the following errors:

Access denied due to lack of permission

You might face an error “unable to open physical database file <File Name> Operating system error 5: Access denied” This error occurs because of the lack of the permissions on the database file or log files. This can be fixed by any of the following methods:

  1. Run SQL Server management studio as an administrator and attach the database
  2. Explicitly grant full control access to the MDF file and LDF file of the database. To do that, Right-click the database files Select the security tab select the appropriate user and grant full control to the user
  3. If none of the above solutions work, copy the database files to the default database file locations. When we copy these files to the default database file location, the user will get the required permissions automatically

Unable to downgrade:

While attaching the database, if you see “The database cannot be opened because it is version XXX” error, then make sure that you are not attaching the database files of the higher version to the lower version. For example, if you are trying to attach the database of SQL server 2014 to SQL Server 2008, you will see the following error:

Cannot attach the higher version database

The downgrade was never supported by Microsoft, so you have no options to rectify this issue.

Summary

In this article, I have explained different types of database files (MDF, NDF and LOG files) and different ways to attach the database to SQL Server instance via SSMS and T-SQL. Also, we run through the basic troubleshooting steps to fix the errors which have been occurred while attaching the database.

Nisarg Upadhyay
168 Views