What are NDF Files?

前端 未结 3 1462
陌清茗
陌清茗 2021-02-03 16:34

SQL Server uses MDF for data files and LDF for log files, but what are NDF files?

Whats the benefits of these files?

3条回答
  •  我在风中等你
    2021-02-03 17:26

    Secondary data files are optional, are user-defined, and store user data. Secondary files can be used to spread data across multiple disks by putting each file on a different disk drive. Additionally, if a database exceeds the maximum size for a single Windows file, you can use secondary data files so the database can continue to grow.

    Source: MSDN: Understanding Files and Filegroups

    The recommended file name extension for secondary data files is .ndf, but this is not enforced.

提交回复
热议问题