How Could I delete all tables by writing a Module?

Andrew

New Member
Joined
Mar 2, 2002
Messages
30
As above, How could I delete all tables by writing a module??
Also, How could I import all tabels from an ODBC Database?? :p
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
Maybe I did not understand your question, but if you want to delete all the tables, why not just create a new database?
 
Upvote 0
No, I need to delete all the tables in the database, then import all the tables (with same name).
 
Upvote 0
Andrew can you clarify why you want to do this and what you are trying to achieve. It doesn't make any sense to delete the tables and then import them again.

If you are trying to update your data you can set up delete queries to delete the data in the tables and then use the transfer spreadsheet method to re import the data to the appropriate tables.


Ziggy
 
Upvote 0
Andrew,

Instead of importing a new file or into an existing one, how about linking to the existing odbc database instead? This should give you dynamic data.

If you'd like to delete existing tables, for which you know the name, you can assign that name to a variable like strTblName and insert the below If statment into your code to first look for, then delete the table (or link)

The function below was something I believe I pulled off:
http://www.mvps.org/access/

Lot of good information and examples there.

Code:
If ObjectExists("Table", strTblName) Then
  DoCmd.DeleteObject acTable, strTblName
End If


Function ObjectExists(strObjectType As String, strObjectName As String) As Boolean
     Dim db As Database
     Dim tbl As TableDef
     Dim qry As QueryDef
     Dim i As Integer
     
     Set db = CurrentDb()
     ObjectExists = False
     
     If strObjectType = "Table" Then
          For Each tbl In db.TableDefs
               If tbl.Name = strObjectName Then
                    ObjectExists = True
                    Exit Function
               End If
          Next tbl
     ElseIf strObjectType = "Query" Then
          For Each qry In db.QueryDefs
               If qry.Name = strObjectName Then
                    ObjectExists = True
                    Exit Function
               End If
          Next qry
     ElseIf strObjectType = "Form" Or strObjectType = "Report" Or strObjectType = "Module" Then
          For i = 0 To db.Containers(strObjectType & "s").Documents.Count - 1
               If db.Containers(strObjectType & "s").Documents(i).Name = strObjectName Then
                    ObjectExists = True
                    Exit Function
               End If
          Next i
     ElseIf strObjectType = "Macro" Then
          For i = 0 To db.Containers("Scripts").Documents.Count - 1
               If db.Containers("Scripts").Documents(i).Name = strObjectName Then
                    ObjectExists = True
                    Exit Function
               End If
          Next i
     Else
          MsgBox "Invalid Object Type passed, must be Table, Query, Form, Report, Macro, or Module"
     End If
     
End Function
 
Upvote 0

Forum statistics

Threads
1,221,544
Messages
6,160,431
Members
451,646
Latest member
mmix803

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top