This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes Other Java Products and Servers and the fly likes HSQL embedded database giving Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Products » Other Java Products and Servers
Reply Bookmark "HSQL embedded database giving "user lacks privilege or object not found"" Watch "HSQL embedded database giving "user lacks privilege or object not found"" New topic
Author

HSQL embedded database giving "user lacks privilege or object not found"

Lonnie Lewis
Greenhorn

Joined: Mar 30, 2009
Posts: 8
Hello,
I'm attempting to configure an embedded HSQL database in a maven/hibernate project for unit testing. For "production mode", I have configured an Oracle database, with works fine (I can add, delete, etc.).

For unit testing, I first tried specifying in the spring config file:



schema.sql contains SQL for creating all of the tables and sequences. When running, I get errors saying the tables already exist. OK, I remove that line and have just:




When I run that, I get "user lacks privilege or object not found" when attempting to insert the data found in the "test-data.sql" file. I assume that the tables do exist (since I get the first error message) and I just don't have access. The information I've seen don't seem to imply security credentials are needed for the embedded databases, but I'm not sure about that. I attempted to change the configuration passing credentials like:



But I get the same "user lacks privilege or object not found".

If I remove the jdbc:initialize-database element completely, I get the same "user lacks privilege or object not found" error as the test case is attempting to create a JPA object.


Any idea what I'm doing wrong?

Lonnie Lewis
Greenhorn

Joined: Mar 30, 2009
Posts: 8
Never mind, I got it to work. I needed to add "if not exists" in the creation of the elements. Not sure why, maybe the script is being executed more than once? I don't know...
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: HSQL embedded database giving "user lacks privilege or object not found"
 
Similar Threads
HSQLDB - user lacks privilege or object not found
How to Create Auto Schema
Problem Accessing HSQLDB Inmemory Tables
[JPA 2.0] Redoploying app deletes my database?
Programatic Schema Export with Hibernate and EJB3