Collections:
What Is sys.database_files?
What Is sys.database_files view in SQL Server?
✍: FYIcenter.com
sys.database_files is a system view in a SQL Server Database
that contains information about each physical files used by the database.
Each record in the sys.database_files table represents a single SQL Server Physical File with the following key fields:
Here is an example of SQL Server Database with only 2 required physical files:
SELECT * FROM sys.database_files file_id type type_desc data_space_id name physical_name ... 1 0 ROWS 1 PRIMARY D:\DATA\primary.mdf ... 2 1 LOG 0 LOG D:\DATA\log.ldf ...
⇒ What Is a SQL Server Filegroup
2019-07-14, ∼6937🔥, 0💬
Popular Posts:
Where to find tutorials on Selenium test tools? I want to know how to use Selenium. Here is a large ...
Where to find test data generators? FYIcenter.com has prepared a number of test data generators for ...
Where to find tutorials on Apache JMeter test tool? I want to know how to use Apache JMeter. Here is...
How to see my IP address Host Name? To help you to see your IP Address Host Name, FYIcenter.com has ...
How to validate Mod 10 (Luhn Algorithm) checksum? In order to help your programming or testing tasks...