I want to check Instant File Initialization is enabled or not in Azure SQL Server.
I have tried like this:
exec xp_readerrorlog 0, 1, N'Database Instant File Initialization'
but I got an error:
Could not find stored procedure 'xp_readerrorlog'.
I also tried with the dynamic management view sys.dm_server_registry
, but this also throws an error:
Invalid object name 'sys.dm_server_registry'.
So help me out...