Invalid object name [dbo].[TriggerName]
问题 I created a trigger named UPDATE_MERCHANDISE . The query completed with one error, a simple typo. I fixed the typo and changed the code to ALTER TRIGGER , but now when I try to execute it I receive the error Invalid object name [dbo].[UPDATE_MERCHANDISE] Why would it be valid when I created it, but not when I try to alter it? Any and all help/ideas would be appreciated. Thanks. USE [CIS31038] GO SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO ALTER TRIGGER [dbo].[UPDATE_MERCHANDISE] ON [dbo]