Additional SQL Server features and topics not covered by specific categories
Hi @sql test
SQL Server checks the version of the database when restoring and does not allow you to restore a database from a newer version of SQL Server to an older version of SQL Server.
However, you could use the Import/Export wizards in SSMS to migrate from 2019 to 2017.
Or an alternative: Clone the Database, using on local.
In the SSMS, right click on the database to export, then Tasks => Export Data-tier Application it creates a bacpac file.
Copy the backpac to the distant server, and there in SSMS, right click on the "Databases" folder and then Import Data-tier Application, use the copied backpac file.
It copies the schema and the data as well.
Referring from this thread: Clone a database from SQL Server 2019 to 2017
Best regards,
Cosmog Hong
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".
Note: Please follow the steps in our Documentation to enable e-mail notifications if you want to receive the related email notification for this thread.