Tagged: MDF and LDFs in SQL Server

Learning File Size Information of MDF and LDF’s in SQL Server

Hello everyone, In this article, I will provide information about learning the file size information of MDF and LDF’s in SQL Server. With the help of the code below, you can learn the file size information of all databases in SQL Server. SELECT DB_NAME(mf.database_id) AS DatabaseName, mf.physical_name AS PhysicalPath, size_on_disk_bytes...

Don`t copy text!