Click here to Skip to main content
15,896,118 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I want to know that is there any option that I can use to track the updated or modified table records from the last log in of the database?
Posted

If you want to access the records that are Updated or deleted or inserted you can create the triggers on the table you want to track this and you can access the records from special tables INSERTED, DELETED.

http://msdn.microsoft.com/en-us/library/aa214435(v=sql.80).aspx[^]

If you want to know the last modified date of a table you use the query like this:
SQL
  SELECT OBJECT_NAME(OBJECT_ID) As DbName, Last_User_Update, 
  FROM sys.dm_db_index_usage_stats
  WHERE database_id = DB_ID('<your database="" name="">')

</your>


I hope I have answered your question.
 
Share this answer
 
Comments
Chiranthaka Sampath 14-Feb-13 10:34am    
Isn't there any other option in SQL SERVER 2008 that can track the updated, deleted or inserted record ? Like an option within the SQL server 2008 management studio.?
I found a nice article that solve my problem. Please refer the link I have posted at the below!

Setting up Change Data Capture in SQL Server 2008


http://www.techrepublic.com/blog/datacenter/setting-up-change-data-capture-in-sql-server-2008/1272[^]

Thanks
Chiranthaka
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900