Hi,
It is a 64 bit Informix version meant for 64 bit Unix OS.
If by any chance, you have already installed it, you can query in one of database with the SQL below:
select
case
when dbinfo('version','os') = 'U' then '32 bit Unix'
when dbinfo('version','os') = 'F' then '64 bit Unix and 64 bit Informix'
when dbinfo('version','os') = 'H' then '64 bit Unix and 32 bit Informix'
when dbinfo('version','os') = 'W' then 'Windows'
when dbinfo('version','os') = 'T' then 'Windows NT / 2000'
else 'Unknown OS version'
end
from systables where tabid=1;
Regards,
Shriyan