What is the best way to get the names of all of the tables in a specific database on SQL Server?
SELECT * FROM information_schema.tables where TABLE_TYPE = 'BASE TABLE'
SQL Server 2012