Forum Discussion
bentz
11 months agoFrequent Visitor
On-Premises SQL Server Mirroring: Internal system error occurred. ArtifactId: 8190a71d-9f0b-46c1-a3b
Hi! I am trying to test SQL Server mirroring with our on-premises SQL Server. I keep having the error Internal system error occurred. ArtifactId: 8190a71d-9f0b-46c1-a3b9-1971eacef801 For...
- 10 months ago
Hi!
I have found the issue:select name, is_cdc_enabled from sys.databases; EXEC sys.sp_cdc_enable_dbreturned that CDC is not enabled for the DB.
When trying to enable it with:EXEC sys.sp_cdc_enable_dbit failed with
Could not update the metadata that indicates database pstDemo is enabled for Change Data Capture. The failure occurred when executing the command 'SetCDCTracked(Value = 1)'. The error returned was 15517: 'Cannot execute as the database principal because the principal "dbo" does not exist, this type of principal cannot be impersonated, or you do not have permission.'. Use the action and error to determine the cause of the failure and resubmit the request.
This I fixed withALTER AUTHORIZATION ON DATABASE::[pstDemo] TO [sa];
Afterwards I was able to enable CDC and the mirroring started working.
v-lgarikapat
10 months agoCommunity Support
Hi bentz ,
Thanks for reaching out to the Microsoft fabric community forum.
Thanks for your prompt response.
I wanted to follow up and confirm whether you’ve had the opportunity to review the information provided by tayloramy If you have any questions or need further clarification, please don’t hesitate to reach out.
We appreciate your collaboration and support!
Best regards,
Lakshmi.