DTU Model tempdb size

Vishu 1,736 Reputation points
2022-02-24T05:41:23.823+00:00

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

Azure SQL Database
0 comments No comments
{count} vote

Accepted answer
  1. Alberto Morillo 34,671 Reputation points MVP Volunteer Moderator
    2022-02-24T11:27:13.417+00:00

    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' 
    
    1 person found this answer helpful.

1 additional answer

Sort by: Most helpful
  1. GeethaThatipatri-MSFT 29,542 Reputation points Microsoft Employee Moderator
    2022-02-24T20:08:37.443+00:00

    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

    1 person found this answer helpful.
    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.