The database user you have configured for the synchronization must have the appropriate rights to the database. To ensure the database user has the appropriate rights, link the database user to the 'IsahMobileSyncRole' database role:
USE <databasename>;
GO
EXEC sp_addrolemember N'IsahMobileSyncRole', N'<dbusername>';
GO
<databasename>
is the name of the Isah database and <dbusername>
is the database user configured in the Web.Config file.