Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SELECT Count(*) AS myTables
FROM MSysObjects
WHERE [Name] Not Like 'MSys%' AND
[Type]=1
UNION
SELECT Count(*) AS myLinkedTables
FROM MSysObjects
WHERE [Type]=6;
SELECT [Name] AS myTables
FROM MSysObjects
WHERE [Name] Not Like 'MSys%' AND
[Type]=1
UNION
SELECT [Name] AS myLinkedTables
FROM MSysObjects
WHERE [Type]=6;
Dim rst As ADODB.Recordset
Set rst=Conn.OpenSchema(adSchemaTables, Array(Empty, Empty, Empty, "TABLE"))
Do While not rst.EOF
Debug.Print rst.Fields("TABLE_NAME")
rst.Movenext
Loop