how we can recover deleted record in ms access database
is any way to recover deleted data in ms access database we can recover deleted record in ms access database or not please tell me
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Sagar LadPosted Aug 26, 2021, 7:25 PM
Jon SnowPosted Aug 7, 2019, 1:45 AM
luther andersonPosted Jan 27, 2019, 11:26 PM
Elizabeth yatesPosted Sep 25, 2018, 4:43 AM
Nevin FradianPosted Sep 4, 2017, 6:14 AM
Rajkiran SwainPosted Aug 29, 2017, 2:33 AM
Max JordanPosted Aug 29, 2017, 1:57 AM
- If the database has not been closed since the tables were deleted
- If the database has not been compacted after deletion
- If Access UI was used to delete data
- If No attachments were present
Here is the code.Sub RecoverDeletedTable()On Error GoTo ExitHereDim db As DAO.DatabaseDim strTableName As StringDim strSQL As StringDim intCount As IntegerDim blnRestored As BooleanSet db = CurrentDb()For intCount = 0 To db.TableDefs.Count - 1If Left(strTableName, 4) = "~tmp" ThenstrSQL = "SELECT DISTINCTROW [" &; strTableName &; "].* INTO " &; Mid(strTableName, 5) &; " FROM [" &; strTableName &; "];"DoCmd.SetWarnings FalsesgBox "A deleted table has been restored, using the name '" &; Mid(strTableName, 5) &;"'", vbOKOnly, "Restored" blnRestored = TrueEnd IfNext intCountIf blnRestored = False Then MsgBox "No recoverable tables found", vbOKOnlyEnd If '*EXIT/ERROR* ExitHere:DoCmd.SetWarnings True Set db = NothingExit SubResume ExitHereEnd SubEdward paulPosted Aug 3, 2017, 6:57 AM
Virat SinghPosted Apr 14, 2017, 1:37 AM
They have mentioned all the best softwares available in the market be it
Hope this answer helpsPosted Dec 26, 2015, 3:30 AM
jack matthewPosted Nov 23, 2015, 2:47 AM
This tool can be downloaded here:- http://www.nucleustechnologies.com/Access-Databases-Repair-Software.php
Tana adamPosted Aug 12, 2015, 12:54 AM
jan bowersPosted Aug 11, 2015, 2:46 AM
carol juarezsPosted Jul 17, 2015, 1:49 AM
John WalkerPosted Jul 8, 2015, 1:49 AM
Use Access File Repair Software to recover deleted data in MS Access Database. The software is capable to restore tables, forms, queries, reports, macros etc. and support MS Access 2013 and all the below versions.
Read More: - http://www.accessfilerepair.com/
jack matthewPosted Jun 16, 2015, 7:34 AM
Roger MartinezPosted Mar 12, 2015, 11:59 AM
Mark WilliumPosted Dec 21, 2014, 10:41 PM
There is a 3rd party software that can help you. It recovers deleted records from Access database.
I have found this on their website.
Stellar Access repair has an option that allow you to recover deleted records, but you need to select "Scan for deleted records" option before scanning the database.
For Details - Click here
sudheer kumarPosted Apr 24, 2014, 2:29 AM
Vasu GadhiyaPosted Apr 24, 2014, 2:17 AM
There is no way to recover deleted records.
sudheer kumarPosted Apr 24, 2014, 2:03 AM
Vasu GadhiyaPosted Apr 24, 2014, 1:47 AM
Abhay ShankerPosted Apr 24, 2014, 1:39 AM
sudheer kumarPosted Apr 24, 2014, 1:33 AM
Vasu GadhiyaPosted Apr 24, 2014, 1:32 AM
sudheer kumarPosted Apr 24, 2014, 1:20 AM
Vasu GadhiyaPosted Apr 24, 2014, 1:13 AM
http://support.microsoft.com/kb/209874