How large is your largest database?
If it's below 10 GB then you can use the free Express Edition.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi, We're currently running Microsoft SQL Server 2000 and would like to migrate to 2022 but to do this we have to iterate the database through multiple version of SQL server. Is it possible to get temporary licenses of all the version we need to migrate the database the full way or is there a better solution? We don't want to have to buy a license for every version we need.
Thanks
How large is your largest database?
If it's below 10 GB then you can use the free Express Edition.
You would need to get hold of SQL 2005 or SQL 2008 and restore backup from SQL 2000 on these. Then take a new backup and restore it on SQL 2022. (SQL 2022 can read backups from SQL 2005 and up.) The challenge is not to so much to have to pay for SQL 2005/2008, but to get hold of them at all, as they are out of support. If you have Visual Studio subscription, you can find them there. I would talk to Microsoft. After all, they would love to see you on SQL 2022, so they should be interested in helping you.
Hi @Lester Kelly,
You can migrate databases from older versions of SQL Server to SQL Server 2022 (16.x), as long as the source database compatibility level is 90
or higher. Databases with a compatibility level of 90
(for example, on SQL Server 2005 (9.x)), are automatically upgraded to a compatibility level of 100
when migrated to SQL Server 2022 (16.x). If the compatibility level on the source database is 100
or higher, it is unchanged on SQL Server 2022 (16.x).
So you may first need to upgrade to SQL Server2005 first.
See Supported version and edition upgrades (SQL Server 2022)
Regards,
Zoe Hui
If the answer is helpful, please click "Accept Answer" and upvote it.