—
— Dynamically builds T-SQL statements for retrieving the file
— locations for all the databases in the SQL Server Instance
—
— SQL Server versions supported: SQL Server 2005 or later
—
SELECT ‘use ‘+ [name]+’; select ”’+[name]+”’ as DBName,cast ([name] as varchar(45)) as LogicalFileName,cast (filename as varchar(100)) as FileName from sysfiles;’ as SQLStatement FROM master.sys.databases
Details: Just execute the statements generated from the above query and you will receive the file locations for all the databases in the SQL Server instance.
— Dynamically builds T-SQL statements for retrieving the file
— locations for all the databases in the SQL Server Instance
—
— SQL Server versions supported: SQL Server 2005 or later
—
SELECT ‘use ‘+ [name]+’; select ”’+[name]+”’ as DBName,cast ([name] as varchar(45)) as LogicalFileName,cast (filename as varchar(100)) as FileName from sysfiles;’ as SQLStatement FROM master.sys.databases
Details: Just execute the statements generated from the above query and you will receive the file locations for all the databases in the SQL Server instance.
For more info, check out the following links:
Artemakis Artemiou is a Senior SQL Server Architect, Author, a 9 Times Microsoft Data Platform MVP (2009-2018). He has over 20 years of experience in the IT industry in various roles. Artemakis is the founder of SQLNetHub and {essentialDevTips.com}. Artemakis is the creator of the well-known software tools Snippets Generator and DBA Security Advisor. Also, he is the author of many eBooks on SQL Server. Artemakis currently serves as the President of the Cyprus .NET User Group (CDNUG) and the International .NET Association Country Leader for Cyprus (INETA). Moreover, Artemakis teaches on Udemy, you can check his courses here.
Uh, or…
SELECT DB_NAME(database_id), name, physical_name
FROM master.sys.master_files;
Hi Aaron! Thank you for your comment!
That's very correct. Using the master.sys.master_files catalog view is the easiest way to get the file locations as well as other information about the databases.
As the main purpose of this post was to demonstrate how we can dynamically generate SQL statements for multi-DB management, I will write another post containing an example/task which cannot be done otherwise.
Cheers,
Artemis