Tagged: SQL Server Version
Hello everyone, In this article, I will try to give information about the version information and details of all databases in SQL Server. In SQL Server, in some cases, you may want to learn the version information and details of all databases. You can easily do this using the code...
Hello everyone, In this article, you will learn about learning version information in SQL Server. You can learn your SQL Server version information by using the code below. SELECT CAST(SUBSTRING( CAST(SERVERPROPERTY(‘productversion’) AS VARCHAR(20)), 1, CHARINDEX(‘.’, CAST(SERVERPROPERTY(‘productversion’) AS VARCHAR(20))) – 1 ) AS INT); When you run the above code, you...
Hello everyone, In this article, I will try to give information about the version information and cumulative update status in SQL Server. In SQL Server, in some cases, you may want to know the version information and batch cumulative status. You can easily do this using the codes below. SELECT...