Tools: SQL Server Management Studio compatible with the engine.
Set the "Script for Server Version" option to the older version. Include both in the script options. SQL server version 655 - Stack Overflow
“Database version 655 is higher than the server version, which supports database version 611 and earlier.” download sql server database version 655
Every version of SQL Server has a unique internal version number. Version 655 specifically indicates a database that was last upgraded or created under:
If you try to attach a version 655 database to a SQL Server instance that is (e.g., SQL Server 2005, which expects version 611 or lower), you will get: Tools: SQL Server Management Studio compatible with the
ALTER DATABASE [LegacyDB] SET COMPATIBILITY_LEVEL = 140; -- Example for SQL Server 2017
: Connect to your instance; the version number is displayed in parentheses next to the server name. Product Version Mapping : 10.0.xxxx : SQL Server 2008 10.5.xxxx : SQL Server 2008 R2 9.0.xxxx : SQL Server 2005 Troubleshooting Database Downgrades SQL server version 655 - Stack Overflow “Database
In SQL Server, the internal database version number increments with each major release. Version 655 is a fingerprint of a database that has been running on an instance of SQL Server 2000 (original release version 8.0). To put this in perspective:
If you’ve encountered the message “Database version 655” in SQL Server, you are likely dealing with a legacy database from (original RTM version). Version 655 corresponds to the internal database version number that SQL Server uses to track compatibility and feature sets.