I would like to learn how to fetch list of all tables that has identity columns from a MS SQL database.
Select OBJECT_NAME(object_Id) Rrom sys.identity_columns where is_identity = 1;