判斷MSSQL表/存儲(chǔ)過(guò)程/視圖是否存在
當(dāng)前位置:點(diǎn)晴教程→知識(shí)管理交流
→『 技術(shù)文檔交流 』
1).判斷用戶表是否存在
程序代碼 if exists (select top 1 * from sysobjects where id = object_id(N'[所有者.]表名') and type='U') 2).判斷臨時(shí)表是否存在 程序代碼 if object_id('tempdb..##temp') is not null 3).判斷存儲(chǔ)過(guò)程是否存在 程序代碼 if exists (select top 1 * from sysobjects where id=object_id('[所有者.]存儲(chǔ)過(guò)程名') and type='P') 4).判斷視圖是否存在 程序代碼 if exists (select top 1 * from sysobjects where id=object_id('[所有者.]視圖名') and type='V') 該文章在 2011/3/14 14:04:52 編輯過(guò) |
關(guān)鍵字查詢
相關(guān)文章
正在查詢... |