access thread: List of all tables in Access
Hi How can i find list of all tables in particular mdb. including Linked tables. Vinay
select * FROM mSysobjects WHERE (((mSysobjects.Type)=1)) OR (((mSysobjects.Type)=4)); cheers
|
![]() |
P2P Archives
|
|
New Titles for ASP.NET |
access thread: List of all tables in Access
Hi How can i find list of all tables in particular mdb. including Linked tables. Vinay
select * FROM mSysobjects WHERE (((mSysobjects.Type)=1)) OR (((mSysobjects.Type)=4)); cheers
|