Question : is their syscolumns table equivlant table in ms access

Hi all

the query below runs in Ms_sql server
i want it's equivlant query in ms-access. is this possible? if not then what's the alternative

SELECT a.name AS tablename, b.name AS columnname,
    c.name AS col_type_name, b.length, b.prec, b.scale,
    c.xtype AS col_type_id
FROM sysobjects a INNER JOIN
    syscolumns b ON a.id = b.id INNER JOIN
    systypes c ON b.xtype = c.xtype

Answer : is their syscolumns table equivlant table in ms access

Apologies, I didn't realise you were looking for system tables.

The system tables in Access all start with "MSys". If you click Tools->Options and tick View System objects, some of those tables may be what you are looking for.

There is a table called MSysObjects which gives you a list of objects but to retrieve information about an particular object you will need to loop through its Fields collection (or its properties).
Random Solutions  
 
programming4us programming4us