Normal source of getting all the table list in the database.
INFORMATION_SCHEMA.TABLES
sys.tables
sys.objects
sys.all_objects
OBJECTPROPERTY ()
OBJECTPROPERTYEX ()
However, none of above can tell you which table is external table. In order to find out which table are external table, you will have to look into
sys.external_tables.
Query
SELECT *
FROM sys.external_tables
|
No comments:
Post a Comment