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 [schema_name].sys.tables
This should work. Make sure you are on the server which consists of your "[schema_name]"
"[schema_name]"