प्रबंधन स्टूडियो "सिस्टम ऑब्जेक्ट्स" के निर्धारण में निम्नलिखित का उपयोग करता है जहां "tbl" sys.tables है:
CAST(
case
when tbl.is_ms_shipped = 1 then 1
when (
select
major_id
from
sys.extended_properties
where
major_id = tbl.object_id and
minor_id = 0 and
class = 1 and
name = N'microsoft_database_tools_support')
is not null then 1
else 0
end
AS bit) AS [IsSystemObject]