sql - Can't find trigger even though it exists? -


so given database , im trying solve trigger bug (it's pretty small change) i've looked @ every function/trigger did a:

select * sys.triggers name = 'name' 

and returned this:

name    1181247263  1   object_or_column    2053582354  tr  sql_trigger 2012-11-13 09:41:13.707 2013-03-19 14:08:22.583 0   0   0   0 

what mean? there literally folder/function called object_or_column

because can't see it? im doing in sql server management studio btw.

this tell associated table...

select  t.name triggername,          ss.name schemaname,          so2.name tablename    sys.triggers t join    sysobjects         on  t.object_id = so.id join    sysobjects so2         on  so.parent_obj = so2.id join    sys.schemas ss         on  so2.uid = ss.schema_id   t.name = 'name' 

Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -