Hello,
If you select from the sysobjects table, the field xtype can be used to make that determination. This char(2) field uses the following table values:
S = System table
U = User table
V = View
This is apart from the fact that most system tables start with sys, other than the dtproperties table.
I don't know if you can differentiate between these two types using the INFORMATION_SCHEMA.TABLES or another of the INFORMATION_SCHEMA views.
Brian
|