Any way I can ping darovitz? He knows the answer.
Main Topics
Browse All TopicsCRM 4.0 Outlook client on XP SP2 latest updates. CRM 4.0 client with Rollup 4.
Goto tool bar CRM
Syncronize with CRM
Then get error:
A SQL Server error occurred. Try this action again. If the problem continues....
darovitz had the same problem and was able to solve it (ID: 24411201)
I'm not as smart as him/her and need more details in the steps needed to resolve the problem.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Ok..here it is.
In SQL>Databases>CRM (whatever you named it)
There I ran the script below. NOTE: Where it says SELECT @dmnname = 'domain\user'
You put in the domain and user of the person you are trying to fix.
After running that script on the SQL server I then ran the Configuration wizard on the client. Syncing worked fine after that.
/* SQL Script to remove an Outlook Subscription from the MSCRM DB*/
Declare @dmnname char(50),
@SyncEnt char(60),
@sql nchar(100),
@sqlSync nchar(100)
SELECT @dmnname = 'domain\user' /* fill in user's domainname */
DECLARE CRMSync_cursor CURSOR FOR
select substring(SyncEntryTableNa
(select systemuserid from systemuserbase where domainname =@dmnname)
OPEN CRMSync_cursor
FETCH NEXT FROM CRMSync_cursor INTO @SyncEnt
WHILE @@Fetch_Status = 0
BEGIN
SELECT @sql = 'DROP TABLE SubscriptionStatistics_' +(@SyncEnt)
SELECT @sqlSync = 'DROP TABLE SyncEntry_' +(@SyncEnt)
EXEC sp_executesql @sql
EXEC sp_executesql @sqlSync
FETCH NEXT FROM CRMSync_cursor INTO @SyncEnt
END
CLOSE CRMSync_cursor
DEALLOCATE CRMSync_cursor
delete from subscriptionclients where subscriptionid in
(select subscriptionid from subscription where systemuserid in
(select systemuserid from systemuserbase where domainname = @dmnname))
delete from Subscriptionsyncinfo where subscriptionid in
(select subscriptionid from subscription where systemuserid in
(select systemuserid from systemuserbase where domainname = @dmnname))
delete from subscription where systemuserid in
(select systemuserid from systemuserbase where domainname = @dmnname)
Business Accounts
Answer for Membership
by: lsavidgePosted on 2009-11-03 at 16:34:03ID: 25735396
Rollup 7 is available. MS will tell you to install that on the server and client first to see if the issue still happens. What happens if you upgrade?
Lee