Hi, I think that you have set both the tablePrefix and the schemaObjectPrefix to "ds_" in the configuration.
Please remove the tablePrefix in the configuration, and only keep the schemaObjectPrefix. See also http://wiki.apache.org/jackrabbit/DataStore "tablePrefix: The table name prefix. The default is empty. Can be used to select an non-default schema or catalog. The table name is constructed like this: ${tablePrefix}${schemaObjectPrefix}${tableName}" That should solve the problem. If it doesn't, please provide the data store configuration you used. I would also need to know the exact version of Jackrabbit you use, and the complete stack trace of the error. Regards, Thomas On Mon, Sep 21, 2009 at 5:49 PM, freak182 <[email protected]> wrote: > > Hello, > > I got this error: > > ERROR - RepositoryImpl - failed to start Repository: Can not > init data store, driver=org.postgresql.Driver > url=jdbc:postgresql://localhost:5432/jcrpm user=emanux > schemaObjectPrefix=ds_ tableSQL=datastore createTableSQL=CREATE TABLE > ds_ds_datastore(ID VARCHAR(255) PRIMARY KEY, LENGTH BIGINT, LAST_MODIFIED > BIGINT, DATA BYTEA): ERROR: relation "ds_ds_datastore" already exists > org.apache.jackrabbit.core.data.DataStoreException: Can not init data store, > driver=org.postgresql.Driver url=jdbc:postgresql://localhost:5432/jcrpm > user=emanux schemaObjectPrefix=ds_ tableSQL=datastore createTableSQL=CREATE > TABLE ds_ds_datastore(ID VARCHAR(255) PRIMARY KEY, LENGTH BIGINT, > LAST_MODIFIED BIGINT, DATA BYTEA): ERROR: relation "ds_ds_datastore" already > exists: ERROR: relation "ds_ds_datastore" already exists > > ...what should i do to avoid this? > > thanks a lot. > cheers. > > > freak182 wrote: >> >> Hello, >> >> I just notice that when i use DB DataStore, when I first run my >> application it works fine (it initialize the repository). But when i >> restart my app (because i made some modification in my code) the >> repository throwing an exception that the DB DataStore already exist (of >> course) but the repository is shutdown. is there a way to this not to >> shutdown the repository when DB DataStore already exist? >> >> thanks a lot. >> cheers. >> > > -- > View this message in context: > http://www.nabble.com/-OT----DB-datastore-in-development-mode-tp25530302p25530381.html > Sent from the Jackrabbit - Users mailing list archive at Nabble.com. > >
