MSSql Error 1088 - Cannot find the object "tuition_account_info" because it does not exist or you do not have permissions
Following error is a simple and most easily seen error in transaction replication. The solution is also very simple. Read following blog to solve this in minutes.
MSSql Error 1088 - Cannot find the object "tuition_account_info" because it does not exist or you do not have permissions
Command attempted:
if @@trancount > 0 rollback tran
(Transaction sequence number: 0x00025E0E00011BE2000100000000, Command ID: 1)
Let's Understand: The problem is that the object doesn't reside at the subscriber. The object is either deleted or was never created. There are two ways to resolve the problem:
1. Either uncheck the object name from the replication object list.
2. Or create the object in the subscriber with similer schema in publisher.
Regards,
Online Powershell and SQL Classes @ http://tuitionaffordable.webstarts.com
MSSql Error 1088 - Cannot find the object "tuition_account_info" because it does not exist or you do not have permissions
Command attempted:
if @@trancount > 0 rollback tran
(Transaction sequence number: 0x00025E0E00011BE2000100000000, Command ID: 1)
Let's Understand: The problem is that the object doesn't reside at the subscriber. The object is either deleted or was never created. There are two ways to resolve the problem:
1. Either uncheck the object name from the replication object list.
2. Or create the object in the subscriber with similer schema in publisher.
Regards,
Online Powershell and SQL Classes @ http://tuitionaffordable.webstarts.com
Comments
Post a Comment