Skip to content

Commit e31e04a

Browse files
authored
Merge pull request #7141 from jonorossi/patch-1
Fix sys.master_files.is_media_read_only name
2 parents 814d48c + 79dacda commit e31e04a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/relational-databases/system-catalog-views/sys-master-files-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ monikerRange: ">=aps-pdw-2016||>=sql-server-2016||>=sql-server-linux-2017||=azur
4242
|size|**int**|Current file size, in 8-KB pages. For a database snapshot, size reflects the maximum space that the snapshot can ever use for the file.<br /><br /> Note: This field is populated as zero for FILESTREAM containers. Query the *sys.database_files* catalog view for the actual size of FILESTREAM containers.|
4343
|max_size|**int**|Maximum file size, in 8-KB pages:<br /><br /> 0 = No growth is allowed.<br /><br /> -1 = File will grow until the disk is full.<br /><br /> 268435456 = Log file will grow to a maximum size of 2 TB.<br /><br /> Note: Databases that are upgraded with an unlimited log file size will report -1 for the maximum size of the log file.|
4444
|growth|**int**|0 = File is fixed size and will not grow.<br /><br /> >0 = File will grow automatically.<br /><br /> If is_percent_growth = 0, growth increment is in units of 8-KB pages, rounded to the nearest 64 KB<br /><br /> If is_percent_growth = 1, growth increment is expressed as a whole number percentage.|
45-
|is_media_read_onlyF|**bit**|1 = File is on read-only media.<br /><br /> 0 = File is on read/write media.|
45+
|is_media_read_only|**bit**|1 = File is on read-only media.<br /><br /> 0 = File is on read/write media.|
4646
|is_read_only|**bit**|1 = File is marked read-only.<br /><br /> 0 = file is marked read/write.|
4747
|is_sparse|**bit**|1 = File is a sparse file.<br /><br /> 0 = File is not a sparse file.<br /><br /> For more information, see [View the Size of the Sparse File of a Database Snapshot &#40;Transact-SQL&#41;](../../relational-databases/databases/view-the-size-of-the-sparse-file-of-a-database-snapshot-transact-sql.md).|
4848
|is_percent_growth|**bit**|1 = Growth of the file is a percentage.<br /><br /> 0 = Absolute growth size in pages.|

0 commit comments

Comments
 (0)