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 t1.name AS [Schema], t2.name AS [Table] FROM sys.schemas t1 INNER JOIN sys.tables t2 ON t2.schema_id = t1.schema_id ORDER BY t1.name,t2.name