How is it possible that ObjectID 885578193 is in two different databases? Please see the screenshot included.
Select DB_NAME(Database_id) as DBName, object_Name(Object_id) as TableName, * from sys.dm_db_index_usage_stats
Where DB_NAME(Database_id) NOT Like 'Master%' and NOT DB_NAME(Database_id) = 'msdb'
Order by DBName, TableName
ObjectID
I was expecting ObjectID 885578193 to only show in the Udemy database.
New contributor
Picard78 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.