hello, do you know how to determine the database version of a database on sql server management studio for some compatibility reasons because not all of the databases are created using the version of sql server i am currently running. some of them are attached using backup. Thanks.
Internal Database Version
Collapse
X
-
Thanks for the reply CK but the query gave me a null value.
I tried this query.and gave me an error.Code:SELECT DatabaseProperty ('TestDB', '660'); SELECT DatabaseProperty ('TestDB', 660);

i also triedand return 728 version but that database was created using earlier version.Code:SELECT DatabaseProperty ('TestDB', 'version');Comment
Comment