LyndonOHRC
Programmer
I'm using the following query to get the list of table names from a database:
Is there a way to run a query on one of these table names to get it's field names and their sizes?
Lyndon
---People Remember about 10% of what you say ---They never forget how you made them feel. Covey
Code:
SELECT Name
FROM MSysObjects
WHERE Type=1 AND Flags=0
Lyndon
---People Remember about 10% of what you say ---They never forget how you made them feel. Covey