On Wed, Mar 25, 2009 at 5:20 PM, Flavio Donzé <[email protected]> wrote: > org.postgresql.util.PSQLException: ERROR: relation "rep_datastore" already > exists
This looks to me like there is a relation with that name, so the DbDataStore cannot create a table with the same name (it checks whether a table exists under that name before running the create table statement). Have a look at what's inside the database, and maybe delete that or simply choose a different tablePrefix. Regards, Alex -- Alexander Klimetschek [email protected]
