2
votes
How to change string data with a mass update?
I don't have SQL Server in front of me but I believe this will work:
UPDATE T1 SET C1 = REPLACE(C1, 'MSA', 'CMA');
…
1
vote
How to catch a SQL server hacker?
SQL Server 2005 added DDL and DML triggers so you can track who's modifying data as well as the data structure.
…
