如何检查 Azure SQL 服务器中是否启用了即时文件初始化
How to check Instant File Initialization is enabled or not in Azure SQL Server
我想检查 Azure SQL 服务器中是否启用了即时文件初始化。
我试过这样:
exec xp_readerrorlog 0, 1, N'Database Instant File Initialization'
但是我得到一个错误:
Could not find stored procedure 'xp_readerrorlog'.
我也尝试过使用动态管理视图 sys.dm_server_registry
,但这也会引发错误:
Invalid object name 'sys.dm_server_registry'.
所以帮帮我...
数据库即时文件初始化在 Azure SQL 数据库中不可用,如 this 文档中所示。
SQL Azure VM 上的服务器实例 运行 可以利用 Put Page API, to make instant log initialization a reality. For more information, please visit this 博客提供的清除页面 blob 中的一系列字节的功能。
我想检查 Azure SQL 服务器中是否启用了即时文件初始化。
我试过这样:
exec xp_readerrorlog 0, 1, N'Database Instant File Initialization'
但是我得到一个错误:
Could not find stored procedure 'xp_readerrorlog'.
我也尝试过使用动态管理视图 sys.dm_server_registry
,但这也会引发错误:
Invalid object name 'sys.dm_server_registry'.
所以帮帮我...
数据库即时文件初始化在 Azure SQL 数据库中不可用,如 this 文档中所示。
SQL Azure VM 上的服务器实例 运行 可以利用 Put Page API, to make instant log initialization a reality. For more information, please visit this 博客提供的清除页面 blob 中的一系列字节的功能。