how to capture the names of all tables of the database in one table?
how to capture the names of all tables of the database in one table?
Collapse
X
-
Tags: None
-
There is no need to capture table names in one table because they are already "captured" to system table [MSysObjects]. To see it check Options>View>Sy stem objects. User-defined tables may be identified by combination of [Flags] and [Type] field values.Originally posted by ahmed222toohow to capture the names of all tables of the database in one table?
Regards,
Fish -
Non-system tables can be retrieved using
as the record source for a form, combobox or listbox.Code:SELECT [Name] FROM MSysObjects WHERE [Name] Not Like '~*' AND [Name] Not Like 'MSys*' AND [Type]=1 ORDER BY [name];
Linq ;0)>Comment
Comment