On Sat, Oct 27, 2012 at 8:35 PM, Yunus Acikoz <[email protected]> wrote: > Actually I said I'm using oracle java 6, I meant I'm using oracle's version > of java. I use PostgreSQL as the database.
You're right, I misread, sorry. To see the actual query that causes the problem, you should turn on debugging: https://wiki.duraspace.org/display/DSPACE/Troubleshoot+an+error#Troubleshootanerror-TurningonDebugging(optional) According to DSpace 1.8 documentation, Postgres 8.3 or 8.4 is recommended. It's very likely that it just wasn't tested on 9.1. https://wiki.duraspace.org/display/DSDOC18/Installation#Installation-RelationalDatabase(PostgreSQLorOracle) After you figure out which query causes the problem, you could try a workaround - to use a newer version of the postgres client driver. In [dspace-src]/pom.xml, change it to this version: <dependency> <groupId>postgresql</groupId> <artifactId>postgresql</artifactId> <version>9.1-901-1.jdbc4</version> </dependency> Then rebuild and redeploy. Regards, ~~helix84 ------------------------------------------------------------------------------ WINDOWS 8 is here. Millions of people. Your app in 30 days. Visit The Windows 8 Center at Sourceforge for all your go to resources. http://windows8center.sourceforge.net/ join-generation-app-and-make-money-coding-fast/ _______________________________________________ Dspace-general mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/dspace-general
