February 17, 2006 at 10:00 am
I cannot find anything like it in SQL 2000. INFORMATION_SCHEMA.ROUTINES only shows me sp's and fn's. Can anyone shed some light?
February 17, 2006 at 11:05 am
I'm not sure I understand the question. This comes from BOL, maybe it will help: 'Contains one row for each stored procedure and function accessible to the current user in the current database. '
February 17, 2006 at 11:08 am
but not Triggers
February 17, 2006 at 11:16 am
SQL Server 2000 does not include triggers in any of it's INFORMATION_SCHEMA's. Try using the system tables:
select * from sysobjects where type = 'TR'
February 17, 2006 at 11:50 am
awesome! Is there any way to view the definition of the trigger?
February 17, 2006 at 12:24 pm
sp_helptext trigger_name_here
go
February 17, 2006 at 12:44 pm
thanks y'all..I can take it from here
Viewing 7 posts - 1 through 6 (of 6 total)
You must be logged in to reply to this topic. Login to reply