Hello,
I am trying to run a simple changeowner statement:
USE [database18]
GO
EXEC dbo.sp_changedbowner @loginame = N'sa'
GO
however for some reason, after i run this, i get this error message:
Msg 208, Level 16, State 1, Procedure DDLEventTrigger, Line 28 [Batch Start Line 63]
Invalid object name 'List_DWdbo.LEvent'.
I know that is another database on the same server, however i am not sure why its saying the object doesnt exist when i want to just change owner on database18 from my login to sa... anyone run into this before?