— 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 seasoned Senior Database and AI/Automation Architect with over 20 years of expertise in the IT industry. As a Certified Database, Cloud, and AI professional, he has been recognized as a thought leader, earning the prestigious Microsoft Data Platform MVP title for nine consecutive years (2009-2018). Driven by a passion for simplifying complex topics, Artemakis shares his expertise through articles, online courses, and speaking engagements. He empowers professionals around the globe to excel in Databases, Cloud, AI, Automation, and Software Development. Committed to innovation and education, Artemakis strives to make technology accessible and impactful for everyone.
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