J
Jonathan
Hi, using Access 2003 the following will list all queries in my database.
SELECT MSysObjects.Name
FROM MSysObjects
WHERE (((MSysObjects.Type)=5) AND ((Left([Name],1))<>"~"))
ORDER BY MSysObjects.Name;
The returned list includes pass-through queries. How do I acheive the same
result that does not include pass-throught queries?
Many thanks,
Jonathan
SELECT MSysObjects.Name
FROM MSysObjects
WHERE (((MSysObjects.Type)=5) AND ((Left([Name],1))<>"~"))
ORDER BY MSysObjects.Name;
The returned list includes pass-through queries. How do I acheive the same
result that does not include pass-throught queries?
Many thanks,
Jonathan