I have a schema in SQL Server 2012.
Is there a command that I can run in SQL to get the names of all the tables in that schema that were populated by user?
I kno
SELECT * FROM sys.tables t INNER JOIN sys.objects o on o.object_id = t.object_id WHERE o.is_ms_shipped = 0;