Working with SQL Server is fun. Since SQL Clustering, and AlwaysOn availability group needs Windows Clustering so sometimes there are some cluster issues which I have to deal with and fix. Let us learn about an error related to core resource.
Recently, one of my client did some changes to the cluster and wanted to change file share witness to the new share. So they modified file share witness and after that they started seeing two file share resources in cluster core resources. When they tried deleting the unused one, we got below error.
If we press Ctrl+C on the message, we can paste it and will get below.
[Window Title]
Error
[Main Instruction]
The operation has failed
[Content]
The cluster resource could not be deleted since it is a core resource.
[^] Hide Details [OK]
[Expanded Information]
Error Code: 0x800713a2
The cluster resource could not be deleted since it is a core resource.
I was not able to reproduce the error in my lab. When I provide a new share name, old one gets removed automatically, but that was not the case when my client faced it.
SOLUTION
In this case the solution was not hard. We ran “Quorum Configuration Wizard” and modified the quorum model from “Node and File Share Majority” to “Node Majority”. As soon as we did that, both file shares disappeared from the failover cluster manager. Later we changed the quorum model back to “Node and File Share Majority” and selected the share with we needed for witness.
Reference: Pinal Dave (http://blog.sqlauthority.com)
First appeared on SQL SERVER – Fix: The Cluster Resource Could not be Deleted Since it is a Core Resource