April 30, 2010 at 4:12 am
Hi,
In witch table can i find the information of what is the log file and the data file path of each database?
Thabk you.
April 30, 2010 at 4:17 am
Hi,
select name,physical_name from sys.master_files
[font="Verdana"]Renuka__[/font]
April 30, 2010 at 4:22 am
SELECT name, physical_name AS current_file_location
FROM sys.master_files
April 30, 2010 at 6:18 am
Maybe this is the old way of doing it... I'd never heard of sys.master_files before.
Use MyDB;
GO
Select * from sysfiles;
(Yes, I know using * is bad, but it's a tiny table).
July 17, 2014 at 5:05 am
Methinks this post by broywin might be marketing spam since that tool has nothing to do with SQL Server.
Viewing 5 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply