Does Extension matter for Creating a database?

Written by VidhyaSagar. Posted in General

We have 3 types of file extensions in SQL Server. MDF, NDF and LDF each one representing Primary, Secondary and Log file respectively. Do you think these extensions are need to be given to the respective files? If your answer is yes then you are wrong. You can give any extension as you like or else you can even interchange these 3 extensions to primary, secondary and log file. Extension plays a important role for us to understand which file is what where as when you attach the db, SQL (by pointing the primary file) knows where the log file and the additional files for the db, it will attach the database without any errors. This is because SQL will check the primary file (which you have pointed) and if its in right format then it will start reading the header page to fetch additional details about other files and attach the database.

I have tested this with below versions of SQL Server

  • SQL Server 2005
  • SQL Server 2008
  • SQL Server 2008 R2

Now lets do a test to confirm this.

  • Creating a database with different extension
CREATE DATABASE ExtensionTest ON  PRIMARY ( NAME = N'ExtensionTest', FILENAME = N'C:TempExtensionTest.data')  LOG ON ( NAME = N'ExtensionTest_Log', FILENAME = N'C:TempExtensionTest_log.log')GO

extension_test_1

  • Verifying the database files
SELECT name,physical_name FROM ExtensionTest.sys.database_files

extension_test_2

  • Lets detach and attach the database
EXEC SP_DETACH_DB 'ExtensionTest'

extension_test_3

EXEC SP_ATTACH_DB 'ExtensionTest','C:TempExtensionTest.data'    ,'C:TempExtensionTest_log.log'

extension_test_4

From this test you understood that extension doesnt matter for SQL Server, its only for our understanding. I dont mean you need to create your database with your own extension, Im just sharing a information that SQL Server can also attach a primary file with different extension. Its always better to have correct extension so that it will be easier for our understanding Smile

VN:F [1.9.13_1145]
Rating: 0.0/5 (0 votes cast)
VN:F [1.9.13_1145]
Rating: 0 (from 0 votes)

Tags: , , ,

Trackback from your site.

Leave a comment

*

Recent Comments

DotNetShoutout

|

SQL-Articles ยป Script to get data file usage and autogrowth details…

Thank you for submitting this cool story – Trackback from DotNetShoutout…

VidhyaSagar

|

Saeed,
I don’t think so you can stop it in SMO, instead you need to turn off password policy for that login

VidhyaSagar

|

Thanks Ashish, I’ve updated the script.

Ashish

|

I was just searching some trace related articles and gone through your article. Found one incorrect information,
to disable the trace, the command should be
dbcc traceoff (….)
you might have by mistake mentioned it as traceon for disabling as well.