12

What is the query required to get the full database version in an Informix database?

1 Answer 1

17

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
Sign up to request clarification or add additional context in comments.

2 Comments

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.
I needed to qualify with schema name: SELECT DBINFO('version','full') FROM informix.systables WHERE tabid = 1

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.