0

I have updated 100 rows on one column which have different values in it e.g. 3,5,2,1,4,5 etc but i have wrongly updated all with value 9 and also committed it. is there any way that i can revert the previous values to that column? iam using sql server r2

1 Answers1

0

SQL Server doesn’t support this but in some cases it is possible to recover data by reading transaction log. This works if database was in full recovery mode and 3rd party tools like ApexSQL Log or Log Rescue are needed. There is also a way to read t-log using DBCC LOG command but it too difficult.

check this

Community
  • 1
  • 1
Jameel Grand
  • 2,131
  • 14
  • 31