SQL Server Standard database hitting 10GB limit

-- -- 952 Reputation points
2024-12-18T22:23:40.8866667+00:00

Hi

We attached a SQL Server Express created database to SQL Server Standard 2019 but the database is still hitting 10GB limit. What can we do to update schema so 10GB limit is gone?

Thanks

Regards

SQL Server
SQL Server
A family of Microsoft relational database management and analysis systems for e-commerce, line-of-business, and data warehousing solutions.
14,351 questions
0 comments No comments
{count} votes

Accepted answer
  1. LiHongMSFT-4306 30,211 Reputation points
    2024-12-19T02:15:35.4233333+00:00

    Hi @-- --

    Use below code to check current database file size:

    USE YourDatabaseName
    EXEC sp_helpfile;
    

    Try expanding the file size as follow:

    ALTER DATABASE YourDatabaseName
    MODIFY FILE ( NAME = 'DataFileName', SIZE = 50GB );
    

    Review this tech doc for more details and examples.

    Best regards,

    Cosmog


    If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    0 comments No comments

0 additional answers

Sort by: Most helpful

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.