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
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
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
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".