How to Recover Deleted rows from sql 2000 Database
Database
3
Posts
2
Posters
0
Views
1
Watching
-
How to Recover Deleted rows from sql 2000 Database using with some period parameter eg: from 01/01/2012 - 20/05/2012 Display all deleted records on this period.
-
How to Recover Deleted rows from sql 2000 Database using with some period parameter eg: from 01/01/2012 - 20/05/2012 Display all deleted records on this period.
There is no inbuilt-mechanism to restore or read deleted rows in SQL Server 2000. You must implement logical deletes instead of physical deletes to be able to achieve that. (For example, an IsDeleted(bit) column in every table). As Eddy suggested, the only other ways is to work on a restored copy of the database.