Reputation: 97
I have a SQL Server 2012 storing one shared database over multiple SQL Server CE database clients.
Process is like this:
For history record, I am looking for ways to log all this activity in order to keep track of every action for maintenance sake.
How can we manage this?
Upvotes: 0
Views: 140
Reputation: 41769
You could add an audit table and audit and log activity in your data acces layer on the client, and sync this table up.
Upvotes: 1