Viewing 3 posts - 1 through 3 (of 3 total)
The following may get you started:
Select 'Grant ' +
Case sp.action
when 26 then 'REFERENCES'
when 193 then 'SELECT'
when 195 then 'INSERT'
when 196 then...
April 29, 2004 at 2:44 am
We have experienced this problem too, and I agree with Colin that it seems to be a configuration change and not directly connected with SQL Server - it just suffers...
March 9, 2004 at 2:53 am
The following may go some way to providing the information you seek:
Select sdid.name as [Trigger Name], sdepid.name as [Dependent Object Name],
(Case sdepid.xtype
when 'P' then 'Procedure'
when 'TR'...
January 29, 2004 at 3:53 am
Viewing 3 posts - 1 through 3 (of 3 total)