Here are the key steps to degrade a SQL Server database from a higher version to a lower one:
1. Generate scripts for the database objects (tables, views, stored procedures, etc.) in the lower target version using SQL Server Management Studio.
2. Drop the existing database in the higher version.
3. Create an empty database with the same name in the lower target version.
4. Run the generated scripts to recreate all the database objects in the lower target version.
5. Use SQL Server Integration Services or bcp utility to export the data from the higher version database and import it into the recreated database in the lower target version.
6. Test the degraded database in the lower target