Ever needed to delete the linked tables out of your database. Sadly Access does not allow one to make multiple selection of Access object to perform batch actions on, such as delete. So if you have quite a few tables to delete it can be frustrating and a waste of time. This is why I create the very simply procedure found below.
'--------------------------------------------------------------------------------------- ' Procedure : DeleteAttachedTbls ' Author : Daniel Pineault, CARDA Consultants Inc. ' Website : http://www.cardaconsultants.com ' Purpose : Deletes all the linked tables from the active database. It only removes ' the links and does not actually delete the tables from the back-end ' database. ' Copyright : The following may be altered and reused as you wish so long as the ' copyright notice is left unchanged (including Author, Website and ' Copyright). It may not be sold/resold or reposted on other sites (links ' back to this site are allowed). ' ' Revision History: ' Rev Date(yyyy/mm/dd) Description ' ************************************************************************************** ' 1 2011-Jun-10 Initial Release '--------------------------------------------------------------------------------------- Function DeleteAttachedTbls() On Error GoTo Error_Handler Dim db As DAO.Database Dim tdf As DAO.TableDef DoCmd.SetWarnings False Set db = CurrentDb() For Each tdf In db.TableDefs If (tdf.Attributes And dbAttachedTable) = dbAttachedTable Then DoCmd.DeleteObject acTable, tdf.Name End If Next Error_Handler_Exit: DoCmd.SetWarnings True Set tdf = Nothing Set db = Nothing Exit Function Error_Handler: MsgBox "The following error has occurred" & vbCrLf & vbCrLf & _ "Error Number: " & Err.Number & vbCrLf & _ "Error Source: DeleteAttachedTbls" & vbCrLf & _ "Error Description: " & Err.Description, _ vbCritical, "An Error has Occurred!" Resume Error_Handler_Exit End Function |
View ratings
Rate this article
Rate this article
Article ratings
Current average ratings.
Current average ratings.

Friday, June 10th, 2011, 7:54 pm | 


February 5, 2012 at 11:44 pm
Thanks very much for this code. There is an obvious error as it it presented on your website: ‘Exit Sub’ should be ‘Exit Function’. With this change, it worked a treat.
Very annoying the way the link tables now works – I will not use it again as it is too much trouble to change it.
Thanks again for publishing this. The only change I would make is a message at the end to say the code worked as advertised.
February 6, 2012 at 9:42 pm
Thank you for the correction. It was adapted from a sub routine that I quickly converted over to a function for this website to help others, but obviously missed one detail in the conversion. Thank you for pointing it out so I could correct it and avoid others having the issue.
August 29, 2012 at 7:59 am
Well done. Very useful. You’ve saved me and no doubt many others many hours of work to build something like this. Thanks for taking the time to share.