About 21,100 results
Open links in new tab
  1. How to check SQL Server version - Stack Overflow

    Dec 3, 2013 · What are the possible ways to determine the deployed SQL Server version? I’ve tried to do it using the SQL Server software. I want to do it using a command line SQL statement.

  2. sql - How do we check version of Oracle - Stack Overflow

    Oct 1, 2014 · How do we check version of Oracle on which we are working? How do we check the version of the interface on which we are working? I have tried select v$ from version ;

  3. How do you check what version of SQL Server for a database using …

    Sep 12, 2008 · If all you want is the major version for T-SQL reasons, the following gives you the year of the SQL Server version for 2000 or later. This code gracefully handles the extra spaces and tabs for …

  4. SQL Server: @@VERSION Function - TechOnTheNet

    Description In SQL Server (Transact-SQL), the @@VERSION function returns the version of the SQL Server database, including the system and build information.

  5. How can I determine installed SQL Server instances and their versions ...

    265 I'm trying to determine what instances of sql server/sql express I have installed (either manually or programmatically) but all of the examples are telling me to run a SQL query to determine this which …

  6. Oracle / PLSQL: Retrieve Oracle version information - TechOnTheNet

    Oracle / PLSQL: Retrieve Oracle version information This Oracle tutorial explains how to find the Oracle version information with syntax and examples.

  7. How to retrieve the current version of a MySQL database management ...

    Jan 24, 2012 · A surprising number of answers below suggest some variant of mysql --version. This gives the version of the client utility, not the server, so it's a bit like trying to find out your version of …

  8. t sql - How to check SQL Server Database compatibility after sp ...

    79 According to BOL (SQL Server Books Online) on sp_dbcmptlevel, This feature will be removed in a future version of Microsoft SQL Server. Do not use this feature in new development work, and modify …

  9. Which version of PostgreSQL am I running? - Stack Overflow

    Learn how to determine the version of PostgreSQL you are using with this helpful guide on Stack Overflow.

  10. How do I check for the SQL Server Version using Powershell?

    Sep 28, 2011 · Invoke-SqlCmd -query "select @@version" -ServerInstance "localhost" Check all available method to Get the build number of the latest Cumulative Update / Service Pack that has …