SQL Server Performance, DBA Best Practices & Enterprise Data Solutions | MyTechMantra
Home » SQL Server » How to Identify the Location of Resource Database in SQL Server

How to Identify the Location of Resource Database in SQL Server

In this article we will take a look at how to identify the location of Resource database in SQL Server using a TSQL script.

Importance of Resource Database in SQL Server

Microsoft initially introduced Resource database in SQL Server 2005. Resource database is a read-only system database which is hidden from users. System objects such as sys.objects are physically stored in Resource Database which logically appears in the sys schema of each database. However, resource database will only store system objects and you cannot store user data or metadata.

Resource database consists of two files namely mssqlsystemresource.mdf and mssqlsystemresource.ldf. By default these files are located in the <drive>:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Data folder. Most importantly the ID of resource database is always 32767. The ID value of resource database has remained same across all versions of SQL Server 2005 and later.

Also Read How to Backup and Restore Resource Database in SQL Server

Identity the Location of Resource Database in SQL Server Using TSQL Script

Using the below TSQL Script one can easily identify the physical location of Resource Database in SQL Server.

Use master
GO

SELECT 'ResourceDB' AS 'Database Name'
    , NAME AS [Database File]
    , FILENAME AS [Database File Location] 
FROM sys.sysaltfiles 
    WHERE DBID = 32767
GO
TSQL Script to Identify ResouceDB Loaction in SQL Server

Current Version of Resource Database on my instance of SQL Server

Using the below script you can identify the current version of SQL Server. This version number is same as the build number of SQL Server. 

/* Version Number of Resource Database */

SELECT SERVERPROPERTY ('ResourceVersion') AS 'Resource DB Version Number';
GO
Resource DB Version Number

The build number 10.50.1600 means you are running the Release to Manufacturing (RTM) version of SQL Server 2008 R2.

Last Time when Resource Database was updated

Using the below script you can get to know when last time resource database was updated.

/* When Last Time Resource Database was last updated */

SELECT SERVERPROPERTY ('ResourceLastUpdateDateTime') AS 'Resource Database Last Updated on';
GO
Resource DB was last updated on

Conclusion

In this article you have seen how easily you can identify the location of Resource Database using TSQL code. As a best practice, we recommend you to note down the Physical Location, Version Number, and when last time resource database was last update as part of your Disaster Recovery Documentation.

Ashish Kumar Mehta

Ashish Kumar Mehta is a distinguished Database Architect, Manager, and Technical Author with over two decades of hands-on IT experience. A recognized expert in the SQL Server ecosystem, Ashish’s expertise spans the entire evolution of the platform—from SQL Server 2000 to the cutting-edge SQL Server 2025.

Throughout his career, Ashish has authored 500+ technical articles across leading technology portals, establishing himself as a global voice in Database Administration (DBA), performance tuning, and cloud-native database modernization. His deep technical mastery extends beyond on-premises environments into the cloud, with a specialized focus on Google Cloud (GCP), AWS, and PostgreSQL.

As a consultant and project lead, he has architected and delivered high-stakes database infrastructure, data warehousing, and global migration projects for industry giants, including Microsoft, Hewlett-Packard (HP), Cognizant, and Centrica PLC (UK) / British Gas.

Ashish holds a degree in Computer Science Engineering and maintains an elite tier of industry certifications, including MCITP (Database Administrator), MCDBA (SQL Server 2000), and MCTS. His unique "Mantra" approach to technical training and documentation continues to help thousands of DBAs worldwide navigate the complexities of modern database management.

Follow us

Don't be shy, get in touch. We love meeting interesting people and making new friends.