Using this SQL statement to find in my database all tables the have columns whose names contain ItemId
:
SELECT o.name,
c.name
FROM sys.columns c
INNER JOIN sys.objects o ON c.object_id = o.object_id
WHERE c.name LIKE '%ItemId%'
ORDER BY o.name, c.column_id
I received a result containing two tables:
ResourceData
TT_Data_117F9D94
I know about the ResourceData
table and I can find it in the list of my tables.
But I have not been able to find in my database any table name TT_Data_117F9D94
.
Any idea where/how did this table show up in the result of my query?