Export Database
Select the Data Export tab on Workbench this tab allows you to export your MySQL data. Select each schema you want to export, optionally choose specific schema objects/tables from each schema, and generate the export. Configuration options include exporting to a project folder or self-contained SQL file, optionally dump stored routines and events, or skip table data.
Select the Database objects to export, (MyVideos db) and configure the related options. (Create dump in single file and Include Create Schema)

Optionally open the
tab that allows you to refine the export operation. For example, add table locks, use replace instead of insert statements, quote identifiers with backtick characters, and more.Click
to begin the export process:This functionality uses the mysqldump command.
Data Import/Restore (New Server)
Restore exported data from the Data Export operation, or from other exported data from the mysqldump command.
Choose the project folder or self-contained SQL file, choose the schema that the data will be imported to, or choose
to define a new schema.
Create XBMC user
- Open the "MySQL Command Line Client" from the MySQL start menu
- Enter the following commands:
- Type in:
CREATE USER 'xbmc' IDENTIFIED BY 'xbmc';
and press return - Type in:
GRANT ALL ON *.* TO 'xbmc';
and press return
- Type in:
- Close out the command line tool
Now update the AdvancedSettings.xml file to point to the new database and restart your Kodi install, it should continue on the new server