41

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

Please let me know how to get this info?

rayryeng
  • 102,964
  • 22
  • 184
  • 193
mtk
  • 13,221
  • 16
  • 72
  • 112

4 Answers4

58

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
deep
  • 841
  • 7
  • 6
17

Run this command:

select @@version
aF.
  • 64,980
  • 43
  • 135
  • 198
5

1)From OS level(UNIX):-

dataserver -v

2)From Syabse isql:-

select @@version
go

sp_version
go
Mureinik
  • 297,002
  • 52
  • 306
  • 350
Prasad Varma
  • 51
  • 1
  • 1
1

Try running below command (Works on both windows and linux)

isql -v
Ricky
  • 314
  • 1
  • 7
  • 22