什么是 NDF 文件?
SQL Server 使用
.mdf
作为数据文件,使用.ldf
作为日志文件,- 但是
.ndf
文件是什么?
这些文件有什么好处?
SQL Server uses
.mdf
for data files and.ldf
for log files,- but what are
.ndf
files?
What are the benefits of these files?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
来自文件和文件组体系结构
辅助数据文件
辅助数据文件构成除主数据文件之外的所有数据文件。有些数据库可能没有任何辅助数据文件,而其他数据库则有多个辅助数据文件。 建议辅助数据文件的文件扩展名是 .ndf。
也来自 文件扩展名 NDF - Microsoft SQL Server 辅助数据文件
请参阅 了解文件和文件组
/
From Files and Filegroups Architecture
Secondary data files
Secondary data files make up all the data files, other than the primary data file. Some databases may not have any secondary data files, while others have several secondary data files. The recommended file name extension for secondary data files is .ndf.
Also from file extension NDF - Microsoft SQL Server secondary data file
See Understanding Files and Filegroups
/
来源:MSDN:了解文件和文件组
建议的辅助文件扩展名数据文件是
.ndf
,但这不是强制的。Source: MSDN: Understanding Files and Filegroups
The recommended file name extension for secondary data files is
.ndf
, but this is not enforced.NDF文件是Microsoft SQL Server的用户定义的辅助数据库文件,扩展名为.ndf,用于存储用户数据。此外,当数据库文件的大小自动超出其指定大小时,您可以使用 .ndf 文件进行额外存储,并且 .ndf 文件可以存储在单独的磁盘驱动器上。每个 NDF 文件都使用与其相应的 MDF 文件相同的文件名。如果不附加关联的 .mdf 文件,我们就无法在 SQL Server 中打开 .ndf 文件。
An NDF file is a user defined secondary database file of Microsoft SQL Server with an extension .ndf, which store user data. Moreover, when the size of the database file growing automatically from its specified size, you can use .ndf file for extra storage and the .ndf file could be stored on a separate disk drive. Every NDF file uses the same filename as its corresponding MDF file. We cannot open an .ndf file in SQL Server Without attaching its associated .mdf file.