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
-
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
Code:SELECT [Name] FROM MSysObjects WHERE [Name] Not Like '~*' AND [Name] Not Like 'MSys*' AND [Type]=1 ORDER BY [name];
Linq ;0)>Comment
Comment