主頁 > 知識庫 > sql server判斷數(shù)據(jù)庫、表、列、視圖是否存在

sql server判斷數(shù)據(jù)庫、表、列、視圖是否存在

熱門標(biāo)簽:400外呼系統(tǒng)合法 寧波人工外呼系統(tǒng)有效果嗎 電銷機(jī)器人被曝光 怎樣把地圖標(biāo)注導(dǎo)入公司地址 真人語音電銷機(jī)器人 洛陽外呼系統(tǒng)平臺 廣州人工電銷機(jī)器人費用 地圖標(biāo)注一個圓圈怎么用 如何在地圖標(biāo)注自己店鋪

1 判斷數(shù)據(jù)庫是否存在

if exists (select * from sys.databases where name = '數(shù)據(jù)庫名')
drop database [數(shù)據(jù)庫名]

2 判斷表是否存在

if exists (select * from sysobjects where id = object_id(N'[表名]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [表名]

3 判斷存儲過程是否存在

if exists (select * from sysobjects where id = object_id(N'[存儲過程名]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
drop procedure [存儲過程名]

4 判斷臨時表是否存在

if object_id('tempdb..#臨時表名') is not null
drop table #臨時表名

5 判斷視圖是否存在

--判斷是否存在'MyView52'這個試圖
IF EXISTS (SELECT TABLE_NAME FROM INFORMATION_SCHEMA.VIEWS WHERE TABLE_NAME = N'MyView52')
PRINT '存在'
else
PRINT '不存在'

6 判斷函數(shù)是否存在

-- 判斷要創(chuàng)建的函數(shù)名是否存在
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[函數(shù)名]') and xtype in (N'FN', N'IF', N'TF'))
drop function [dbo].[函數(shù)名]

7 獲取用戶創(chuàng)建的對象信息

SELECT [name],[id],crdate FROM sysobjects where xtype='U'

8 判斷列是否存在

if exists(select * from syscolumns where id=object_id('表名') and name='列名')
alter table 表名 drop column 列名

9 判斷列是否自增列

if columnproperty(object_id('table'),'col','IsIdentity')=1
print '自增列'
else
print '不是自增列'

SELECT * FROM sys.columns WHERE object_id=OBJECT_ID('表名') AND is_identity=1

10 判斷表中是否存在索引

if exists(select * from sysindexes where id=object_id('表名') and name='索引名')
print '存在'
else
print '不存在'

刪除索引 drop index 表名.索引名

或: drop index 索引名 on 表名(貌似2000不行)

11 查看數(shù)據(jù)庫中對象

SELECT * FROM sys.sysobjects WHERE name='對象名' SELECT * FROM sys.sysobjects WHERE name='對象名'

您可能感興趣的文章:
  • SQL Server 利用觸發(fā)器對多表視圖進(jìn)行更新的實現(xiàn)方法
  • 細(xì)說SQL Server中的視圖
  • 簡析SQL Server數(shù)據(jù)庫用視圖來處理復(fù)雜的數(shù)據(jù)查詢關(guān)系
  • 解析SQL Server 視圖、數(shù)據(jù)庫快照
  • Sql Server中的系統(tǒng)視圖詳細(xì)介紹
  • Sql Server中的視圖介紹
  • SQL SERVER先判斷視圖是否存在然后再創(chuàng)建視圖的語句
  • SQL server 視圖(view)介紹
  • 存儲過程解密(破解函數(shù),過程,觸發(fā)器,視圖.僅限于SQLSERVER2000)
  • SQL Server視圖的講解

標(biāo)簽:石家莊 煙臺 珠海 南昌 晉中 北海 咸寧 東營

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《sql server判斷數(shù)據(jù)庫、表、列、視圖是否存在》,本文關(guān)鍵詞  sql,server,判斷,數(shù)據(jù)庫,表,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《sql server判斷數(shù)據(jù)庫、表、列、視圖是否存在》相關(guān)的同類信息!
  • 本頁收集關(guān)于sql server判斷數(shù)據(jù)庫、表、列、視圖是否存在的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章