Note
.NET Framework is pre-installed in Microsoft Windows 7/8/8.1/10/11.
Note
CodeWeavers CrossOver must be pre-installed in order to work with Linux and macOS. You can download it at CodeWeavers.
To check a list of macOS and Linux versions that are compatible with CrossOver, see CrossOver system requirements.
dbForge Data Compare can compare and synchronize data of a SQL Server database. To perform this effectively, a user needs access to the schema and the data objects of a database and may require additional privileges depending on the options of data synchronization.
MySQL 5.5 - 8.3.0 and MariaDB 5.5-11.3
Task | Permissions |
---|---|
Comparing data | GRANT SELECT, SHOW VIEW ON database_name.* TO ‘user_name’@’%’; |
Synchronizing data | GRANT INSERT, UPDATE, DELETE ON database_name.* TO ‘‘user_name’@’%’; |
Synchronizing data with special options of sync: archive engine to InnoDB, disable foreign keys, disable primary keys and indexes, disable check constraints, disable DML triggers | GRANT ALTER, DROP, CREATE ON database_name.* TO ‘‘user_name’@’%’; |
Task | Permissions |
Comparing data | GRANT SELECT ON database_name.* TO ‘user_name’@’%’; |
Synchronizing data | GRANT INSERT, UPDATE, DELETE ON database_name.* TO ‘‘user_name’@’%’; |
Task | Permissions |
Comparing data | GRANT SELECT ON database_name.* TO ‘user_name’@’%’; |
Synchronizing data | GRANT INSERT, UPDATE, DELETE ON database_name.* TO ‘‘user_name’@’%’; |
Note
In order to compare data with the tool you need to have at least one of the following permissions:
SELECT ON <database_name>.<table_name> SELECT ON <database_name>.<view_name>
In case you don’t have the right permissions:
GRANT ALTER, DROP, CREATE ON <database_name>.<table_name>
to allow the synchronization to succeed if any of the mentioned options is configured.