I would like to know the exact version of Sybase currently running on my machine.
Please let me know how to get this info?
I would like to know the exact version of Sybase currently running on my machine.
Please let me know how to get this info?
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
1)From OS level(UNIX):-
dataserver -v
2)From Syabse isql:-
select @@version
go
sp_version
go
Try running below command (Works on both windows and linux)
isql -v
Besides select @@version
and sp_version
there is a also the short version
select @@sbssav
available.
© 2022 - 2024 — McMap. All rights reserved.