The max size for the log file can be found by running below query:
SELECT (CAST(Max_Size as decimal) * 8192) / 1024 / 1024 AS MaxSizeMB
FROM tempdb.sys.database_files
WHERE type_desc = 'LOG'
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi Experts
For DTU models , the site mentions Maximum tempdb data file size (GB). Is there a max lof file size also for tempdb or Max Tempdb database size also applicable
https://learn.microsoft.com/en-us/azure/azure-sql/database/resource-limits-dtu-single-databases
Thanks
The max size for the log file can be found by running below query:
SELECT (CAST(Max_Size as decimal) * 8192) / 1024 / 1024 AS MaxSizeMB
FROM tempdb.sys.database_files
WHERE type_desc = 'LOG'
Hi, @Vishu Thanks for posting your query,
In addition to @Alberto Morillo , you can also refer to this document
Thanks, @Alberto Morillo for your support.
Regards
Geetha