select * from sysobjects
where xtype = 'U'
Системные таблицы имеют тип_объекта "S", поэтому вам должны быть предоставлены только ваши пользовательские таблицы.
Подробнее о возможных типах объектов см. В документации sysobjects на MSDN .
Object type. Can be one of these object types:
C = CHECK constraint
D = Default or DEFAULT constraint
F = FOREIGN KEY constraint
L = Log
FN = Scalar function
IF = Inlined table-function
P = Stored procedure
PK = PRIMARY KEY constraint (type is K)
RF = Replication filter stored procedure
S = System table
TF = Table function
TR = Trigger
U = User table
UQ = UNIQUE constraint (type is K)
V = View
X = Extended stored procedure
Марк