You should be able to restore the mysql database from the command line.
mysql> create newdatabase;
mysql> exit
then edit the mysql backup you have and you will need to adjust the groups table inserts and add an Update after the insrt of the Administrator Group.
| Code: |
INSERT INTO `groups` (`id`, `name`) VALUES
(0, 'Administrators');
update groups set id = '0';
INSERT INTO `groups` (`id`, `name`) VALUES
(1, 'Anonymous'),
(2, 'File Admin'),
.
.
.
|
Then
mysql -u <your_owl_user> -p < mysql_backup_file.sql
and that should recreate the database