> hello adrew,
>
> INFORMIXDIR=/opt/informix -- i exported this one...
And the question i should have put into the first posting... is that where
you installed the products?
> how to set the $DBLANG? i dont have it in my installation guide :(
It's generally not important actually, but from the merest hint that you
are having trouble with English plurals, I'm going to guess that you are
maybe german or some non-language speaking origin? If so, then your UNIX
may have a bunch of language shell parameters exported, and maybe they are
causing trouble, which is why I mentioned $LANG too.
In modern UNIX, $LANG is almost obsolete, and a whole new set of shell
variables control languages. Most of them start with LC_ in their name.
You can detect their existence with
env | grep '^LC_'
by the way, this trick is the best way to prove that a shell variable is
properly exported, for example:
env | grep '^INFORMIXDIR='
env | grep '^PATH='
and so on.
Since I do not do anything with non-english machine setup, I cannot advise
you from any experience in this area, but it's my first hunch since it
sounds like it's trying to find the message file in some specific
language.
If you find that you have a whole set of non-english shell variables,
perhaps you need to set DBLANG to something like 'de' or whatever legal
values it takes. I hope the install guide offers it.
Also, if you have installed an English-only version onto a non-english
machine, you might have to remove all the $LANG and $LC_ variables.
Does any of these ideas match up with your situation?
I have to go home now, and my modem socket got broken by the vacuum
cleaner the other day ;-( so I'm going to have trouble following up. Maybe
i've given you enough hints to solve it, or I'm completely wrong so
someone else can pickup the thread. Good luck.