How do I find out what version of Sybase is running
Asked Answered
C

5

43

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

Please let me know how to get this info?

Carrol answered 24/8, 2012 at 9:24 Comment(0)
S
59

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
Solarize answered 24/8, 2012 at 9:28 Comment(0)
C
17

Run this command:

select @@version
Crease answered 24/8, 2012 at 9:27 Comment(0)
O
5

1)From OS level(UNIX):-

dataserver -v

2)From Syabse isql:-

select @@version
go

sp_version
go
Och answered 7/2, 2014 at 15:42 Comment(0)
M
1

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

isql -v
Misreckon answered 3/10, 2019 at 7:16 Comment(0)
T
1

Besides select @@version and sp_version

there is a also the short version select @@sbssav available.

Toxophilite answered 15/5 at 11:39 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.