|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Tuesday, June 23, 2009 3:05 AM
Points: 2,
Visits: 35
|
|
I have to write DDL trigger in sql 2005, using CLR feature. Can anyone provides help in this regard
|
|
|
|
|
SSC-Dedicated
           
Group: General Forum Members
Last Login: Today @ 4:30 AM
Points: 37,742,
Visits: 30,021
|
|
What do you want to do with said trigger and why do you have to use CLR?
Gail Shaw Microsoft Certified Master: SQL Server 2008, MVP SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
We walk in the dark places no others will enter We stand on the bridge and no one may pass
|
|
|
|
|
SSC-Dedicated
           
Group: Administrators
Last Login: Yesterday @ 3:30 PM
Points: 31,436,
Visits: 13,751
|
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Tuesday, June 23, 2009 3:05 AM
Points: 2,
Visits: 35
|
|
Hi
Actually I am Developing a Database Auditing Infrastructure. I am working in SQL Server 2005. So my main focus of area is "SQL Triggers" and "stored Procedures". I ask for help on CLR routine i thought it would help me.
If you can me some other suggestion. I would be thankful to you. Secondly can you suggest me a way that is there any possibility of writing Generalized DML triggers on all tables of database or not ???
Thanks for fast Reply Regards
|
|
|
|
|
SSC-Dedicated
           
Group: General Forum Members
Last Login: Today @ 4:30 AM
Points: 37,742,
Visits: 30,021
|
|
nzubaria (10/28/2008) Hi Actually I am Developing a Database Auditing Infrastructure. I am working in SQL Server 2005. So my main focus of area is "SQL Triggers" and "stored Procedures". I ask for help on CLR routine i thought it would help me.
Anything dealing with data is probably better written in T-SQL than CLR, unless you have a good reason to need the CLR
If you can me some other suggestion. I would be thankful to you. Secondly can you suggest me a way that is there any possibility of writing Generalized DML triggers on all tables of database or not ???
It is possible, but I would strongly recommend against it. Generic triggers tend to perform poorly, leading to slow data changes, deadlocks and all other such unpleasant things.
What I've done in the past is to have a stored procedure that can, using dynamic SQL, create triggers on all tables. That way you only have to write the code once, but the triggers are specific to their tables and hence reasonably fast.
Gail Shaw Microsoft Certified Master: SQL Server 2008, MVP SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
We walk in the dark places no others will enter We stand on the bridge and no one may pass
|
|
|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: Tuesday, April 30, 2013 5:19 PM
Points: 141,
Visits: 388
|
|
| Both a trigger and cdc (change data capture) can be enabled to monitor changes to a table. When would you use each of them ?
|
|
|
|
|
SSC-Dedicated
           
Group: General Forum Members
Last Login: Today @ 4:30 AM
Points: 37,742,
Visits: 30,021
|
|
Please post new questions in a new thread. Thank you.
Gail Shaw Microsoft Certified Master: SQL Server 2008, MVP SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
We walk in the dark places no others will enter We stand on the bridge and no one may pass
|
|
|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: Tuesday, April 30, 2013 5:19 PM
Points: 141,
Visits: 388
|
|
| Thanks Gail, created thread 'SQL 2008 R2 - CDC or Trigger'
|
|
|
|