Useful system stored procedures in SQL Server

后端 未结 12 1045
醉话见心
醉话见心 2021-01-30 03:17

I recently discovered that I could use the sp_help to get a table definition and have been hooked onto it since then. Before my discovery, I had to open up the Obje

12条回答
  •  渐次进展
    2021-01-30 04:12

    Select * From sysobjects where xtype='U' order by Name

    Gives a list of all user-defined tables in a database.

提交回复
热议问题