I am using Sync Framework 2.1 to synchronize an SQL CE database with SQL Server 2008 R2.
Everything worked fine during testing but when tried to launch the application into production using the minimum required permissions (as shown here: http://msdn.microsoft.com/en-us/library/ee845032%28v=sql.100%29.aspx) we started getting this error during synchronization:
Microsoft.Synchronization.Data.DbSyncException: Failed to execute the command 'BulkInsertCommand' for table 'TABLENAME';
It turns out that the reason for this failure is because the bulk stored proc generated by Sync Framework runs the command "Set Identity_Insert ON". (as explained here: http://social.microsoft.com/Forums/en/syncdevdiscussions/thread/0f929e11-a728-4d0f-a252-c79893aa5d1d).
Looking at security needed to run Set Identity Insert ON it appears you have to be the owner of the table or have ALTER permissions on the table
The response in the link above (which is marked as the answer) is to NOT use Bulk Stored procs, which are turned on by default when using Sync Framework and SQL 2008. The problem with that is that without bulk stored procs, the sync takes a long time as it has to insert/update each row individually.
My question: Is granting ALTER permissions on the sync tables or giving db_owner/db_ddladmin the only way to be able to use bulk stored procedures in Sync Framework 2.1?
Thanks for your help!