Getting List of MS SQL User-Created Tables

To get a list of all tables created by user(s) in a database in MS SQL Server, the following query should be run.

SELECT NAME FROM sys.objects WHERE TYPE='U'


You May Interest

How is Deadlock Different From a Blocking Situation in SQL Server ...

Deleting Table With Query in MS SQL

What is SQL Profiler ?

How is Change Tracking is Different From Change Data Capture ?

Getting Character Count in MS SQL