Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

versions? 2

Status
Not open for further replies.

Multidisadvantaged

Technical User
Nov 7, 2002
22
GB
Can anyone tell me how to find the version of IDS I am running on a Solaris system?

Thanks in advance.

Trying is the first step on the road to failure
 
Hi there,

At the unix prompt -

dbaccess -v

This will return -

DB-Access Version 9.40.TC2E1
Software Serial Number AAA#B000000

or

onstat -

This will return -
IBM Informix Dynamic Server Version 9.40.TC2E1
-- On-Line -- Up 04:09:36 -- 2 728 Kbytes


Regards,

Lloyd


 
Hi there,

At unix prompt

onstat -

or

dbaccess -v


Regards,

Lloyd
 
Hi,

and ...

onstat -g dis
will get you the versions of the installed instances.

You can query a database itself for the version:
select dbinfo('version','full') from systables where tabid=1;
select owner from systables where tabname matches '*VERSION';
Select owner from systables where tabid=99;

Regards,
Shriyan
 
Thanks all, will try these.

Regards
Adrian.

Trying is the first step on the road to failure
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top