獲取MSSQL Server中的相關信息(視圖、存儲過程、觸發器、表)

select name from sysobjects where xtype='TR' --全部觸發器
select name from sysobjects where xtype='P' --全部存儲過程
select name from sysobjects where xtype='V' --全部視圖
select name from sysobjects where xtype='U' --全部表object

相關文章
相關標籤/搜索