I'm trying to get a list of all tables from an Access 2007 database using VBA.

I have followed this post:

http://stackoverflow.com/questions/201282/how-to-get-table-names-from-access

Using:

SELECT MSysObjects.Name AS table_name
FROM MSysObjects
WHERE (((Left([Name],1))<>"~")
AND ((Left([Name],4))<>"MSys")
AND ((MSysObjects.Type) In (1,4,6)));order by MSysObjects.Name

but I'm getting this error.

Record cannot be read; no read permission on 'MSysObjects'

I want to be able to get the table names only using a SQL statement and not the OpenSchema method.

I think the problem is with Access. I'm not sure.

Does anybody have any idea?

Thanks

link|improve this question
What is your programming environment? What are you going to use the results for? – David-W-Fenton Dec 22 '09 at 0:27
Also, what's your file format -- ACCDB or MDB? – David-W-Fenton Dec 22 '09 at 0:43
Thanks for your question. I'm using ACCDB. – VBGKM Dec 22 '09 at 12:48
Also, I'm using VBA to transfer information from Access to Excel. – VBGKM Dec 22 '09 at 22:48
Is your VBA in Excel or in Access? – David-W-Fenton Dec 23 '09 at 22:18
show 5 more comments
feedback

3 Answers

It looks like a permissions problem. Try opening the database and going to the security permissions (under Tools-> security -> User and group permissions) Make sure you have admin access to the database.

If you don’t you might have to logon to the database as a user that does and grant yourself permissions

link|improve this answer
-1 Tools->Security->User and Group Permissions does not exist in Access 2007 – jaywon Mar 8 '10 at 4:38
1  
@jaywon: that menu choice DOES exist if you're viewing an MDB file. It will not show up if you're viewing an ACCDB file, for which there is no support for Jet user-level security. So, your comment is WRONG. – David-W-Fenton Aug 30 '11 at 22:03
feedback

Use the DAO tabledefs collection

Sub TableDefs()

    Dim db As dao.Database
    Dim tdfLoop As dao.TableDef

    Set db = CurrentDb
    With db
        Debug.Print .TableDefs.Count & " TableDefs in " & .name
        For Each tdfLoop In .TableDefs
            Debug.Print "    " & tdfLoop.name
        Next tdfLoop
    End With

End Sub
link|improve this answer
That seems sensible, but the OP says "I want to be able to get the table names only using a SQL statement" – Remou Dec 21 '09 at 23:39
There's nothing in the original question suggesting that this is being done from outside Access, so it seems to me that if you're going to get a list of tables, you're going to do something with them. Short of using the SQL string as the rowsource of a combo/listbox, you're going to be using code to use the resulting list, in which case, it hardly makes any difference whether you use the TableDefs collection walk through the Recordset based on the SQL statement. – David-W-Fenton Dec 22 '09 at 0:27
1  
Remou, sure, he said only using a SQL statement. I figure if he hasn't got an answer by now then he should try alternatives. – Tony Toews Dec 22 '09 at 1:05
To explain why I am here: I'm trying to list the tables in an *.mdb file using Perl on Cygwin; trying to do it with DBD::ODBC fails on this error, and the Win32::OLE module that can be used to do DAO won't install. – reinierpost Feb 25 '11 at 13:18
feedback

I was able to make the code work with a MDB file. I had the option to set the user permissions using "Database Tools - Users and Permissions" on the ribbon. This option is only available for MDB files. Now the problem is to make it work with a ACCDB file.

Here is my code:

Dim DBFile As String  
Dim Connection As ADODB.Connection 
Dim Recordset As New ADODB.Recordset

DBFile = "C:\Documents and Settings\User\Desktop\Son.mdb"

Set Connection = New ADODB.Connection  <br/>
Connection.Open "Provider=Microsoft.ACE.OLEDB.12.0; Data Source= " & DBFile & ";"  

SQLString = "SELECT MSysObjects.Name AS table_name" & _
"FROM MSysObjects WHERE (((Left([Name],1))<>" & """~""" & ")" & _
"AND ((Left([Name], 4))<>" & """MSys""" & ")" & _
"AND ((MSysObjects.Type) In (1,4,6)));order by MSysObjects.Name" 

Set Recordset = New ADODB.Recordset 
Recordset.Open SQLString, Connection

The problem is that I can't make it work with ACCDB files.

link|improve this answer
Are you running the code from Access or Excel? – David-W-Fenton Dec 23 '09 at 22:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.