synapsevampire
Programmer
Using Access 2007, but need it to work with 2003 as well.
This will get the list of tables into another table:
SELECT msysobjects.name INTO [CCP Tables]
FROM msysobjects
WHERE (((msysobjects.name) Not Like 'MSys*') AND ((msysobjects.type)=1))
ORDER BY msysobjects.name;
How do I then use this to get a list of all tables with the count of all rows?
I'm used to using Oracle and SQL Server, Access queries seem more proprietary and less SQL like.
All input appreciated.
-k
This will get the list of tables into another table:
SELECT msysobjects.name INTO [CCP Tables]
FROM msysobjects
WHERE (((msysobjects.name) Not Like 'MSys*') AND ((msysobjects.type)=1))
ORDER BY msysobjects.name;
How do I then use this to get a list of all tables with the count of all rows?
I'm used to using Oracle and SQL Server, Access queries seem more proprietary and less SQL like.
All input appreciated.
-k