Hi, I have a gerrit install running with H2.
I set up another gerrit server with MySQL, and now I want to populate MySQL DB with H2 datas. Here is what I did : On mysql server 1. java -jar gerrit.war init -d /home/gerrit On h2 server 2. dump of H2 with java -cp h2-1.3.175.jar org.h2.tools.Script -url jdbc:h2:/home/gerrit/db/ReviewDB -user '' -password '' 3. edit the backup.sql to keep only insert into statements / remove TIMESTAMP, PUBLIC.<tablename>, ... etc to make it mysql compliant On mysql server 4. load the newly edited backup.sql file 5. restart gerrit Loading of content is OK. My user is in administrator group BUT : 1. Can not create new project. Listing projects is OK 2. Groups does not appears, only the 5 regular groups, even if groups are present in account_group_names table. 3. Can not create new group. Adding users to one of the 5 standards groups works OK. What am I missing ? Thanks for any advice. Fabien Bagard -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/h2-database. For more options, visit https://groups.google.com/d/optout.
