Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I find out what version of Sybase is running

I would like to know the exact version of Sybase currently running on my machine.

Please let me know how to get this info?

like image 608
mtk Avatar asked Aug 24 '12 09:08

mtk


2 Answers

There are two ways to know the about Sybase version,

1) Using this System procedure to get the information about Sybase version

> sp_version > go 

2) Using this command to get Sybase version

> select @@version > go 
like image 90
deep Avatar answered Oct 07 '22 08:10

deep


Run this command:

select @@version 
like image 42
aF. Avatar answered Oct 07 '22 09:10

aF.