What is the query required to get the full database version in an Informix database?
1 Answer
This is the simplest query that I could find.
SELECT DBINFO('version','full')
FROM systables
WHERE tabid = 1;
The result will be something like this:
IBM Informix Dynamic Server Version 11.70.FC5GE
2 Comments
Jonathan Leffler
As documented in the Informix Knowledge Center under DBINFO — using the version option there are also other arguments that can be supplied in place of
'full' to get different results.Farid Z
I needed to qualify with schema name: SELECT DBINFO('version','full') FROM informix.systables WHERE tabid = 1