Would'nt it be more correct to say that inherited columns are from sys.system_objects instead of sys.objects.Since thisSELECT * FROM sys.system_views JOIN sys.objects ON sys.system_views.object_id = sys.objects.object_idwill return zero row.Where as this SELECT * FROM sys.system_views JOIN sys.system_objects ON sys.system_views.object_id = sys.system_objects.object_idwill return x rowsAnd this goes for all versions 2005, 2008, 2008R2 and 2012
↧