|
Hallo Karsten, Karsten Hilbert schrieb: >I just checked, we don't have any "character varying" in use. >Also, I replaced most varchar(n) with TEXT. I loaded the gm-schema-dump.sql with Emacs and replaced 95 character varying with varchar. The explanation is, that if you use varchar and dump the db, pg_dump writes character varying, no matter wether you have used character varying oder varchar. Importing the gnumed schema with psql into my database now works perfect.
The solution:
I connected via pgAdminIII to gnumed db on saalam.homeunix.com, copied the users and groups, loaded them into my PostgreSQL db, and then I replaced gnumeds orignal
CREATE FUNCTION plpgsql_call_handler()...
with
CREATE FUNCTION plpgsql_call_handler() RETURNS language_handler
AS '$libdir/plpgsql', 'plpgsql_call_handler'
LANGUAGE c;
And everything works great.Regards Christoph Becker Hallo Christoph, |
_______________________________________________ Gnumed-devel mailing list [email protected] http://lists.gnu.org/mailman/listinfo/gnumed-devel
