views:

100

answers:

3

It is possible in SQL Server Express have a log of all operations "SELECT / UPDATE / INSERT / DELETE" being made.

Thank you.

+1  A: 

You need to run SQL Server Profiler, though. Freeware alternative is here

silent
A: 

We use something similar to this with SQL Server 2005. It should work in the express edition.

Mark
+1  A: 

If you are using the express edition you do not have "SQL Server Profiler". But here is a free open source alternative:

http://code.google.com/p/sqlexpressprofiler/

Espo

related questions