1297

mssql procedure calls

mssql DB... a lot of procedures.create table procs_usage (name varchar(255), called_count int);I need to create a global trigger .... that will run before any PROCEDURE execution ... and an insert/update to the table procs_usage will be made.Is this possible? :)
0