I am using the SQL 2005 Express edition for SQL server. The database resides on another server and I connect to it from my machine through the object explorer. I have created a trigger to run certain queries and updates, but can't seem to find the trigger listed under
MyDB->Programmability->Database Triggers
I can get a list of all the objects using the SELECT * FROM sysobjects
, but I am sure there has to be something in the GUI where I can look at it (and perhaps it's properties, too)
I know the trigger exists because the DB is updated exactly the way I want it to!
I have no such problems with my Stored Procedures, but do not know why my Triggers are invisible! Is the trigger hiding because it resides on a remote server?
Thanks!