Hi @Scott Patton ,
We can using below T-SQL to check GUID for SQL databases.
select name, database_id, service_broker_guid, is_broker_enabled from sys.databases
We can using below t-SQL to enable service broker. If the Database GUID is different with the Sys Database has registered. You will get the error message that you mentioned.
ALTER DATABASE yourDBname SET ENABLE_BROKER
>the Service Broker GUID in the database (62198123-2367-48FB-AC38-CF4ECC63342A) does not match the one in sys.databases (00000000-0000-0000-0000-000000000000).
When we got the error message, we can run below T-SQL to set a new service broker for this database. Here we force a new GUID upon the database, the Rollback Immediate forces any open connections closed. Obviously you want to be VERY careful doing something like that in production, but you should be OK in development.
ALTER DATABASE yourDBname SET NEW_BROKER WITH ROLLBACK IMMEDIATE
If the response is helpful, please click "Accept Answer" and upvote it, as this could help other community members looking for similar queries.