1
vote
How do I find and decouple entities from a certificate when upgrading MS-SQLServer editions?
The Microsoft forum has the following code snipit to delete the certificates:
use msdb
BEGIN TRANSACTION
declare @sp sysname
declare @exec_str nvarchar(1024)
declare ms_crs_s …
