zoukankan      html  css  js  c++  java
  • 判断数据库,函数名,表名,存储过程名称等是否存在

    --判断数据库是否存在
    if exists(select * from master..sysdatabases where name=N’库名’)
    print ’exists’
    else
    print ’not exists’

    ---------------
    -- 判断要创建的表名是否存在
    if exists (select * from dbo.sysobjects where id = object_id(N’[dbo].[表名]’) and OBJECTPROPERTY(id, N’IsUserTable’) = 1)
    -- 删除表
    drop table [dbo].[表名]
    GO

    ---------------
    --判断要创建临时表是否存在
    If Object_Id(’Tempdb.dbo.#Test’) Is Not Null
    Begin
    print ’存在’
    End
    Else
    Begin
    print ’不存在’
    End

    ---------------
    -- 判断要创建的存储过程名是否存在
    if exists (select * from dbo.sysobjects where id = object_id(N’[dbo].[存储过程名]’) and OBJECTPROPERTY(id, N’IsProcedure’) = 1)
    -- 删除存储过程
    drop procedure [dbo].[存储过程名]
    GO

    ---------------
    -- 判断要创建的视图名是否存在
    if exists (select * from dbo.sysobjects where id = object_id(N’[dbo].[视图名]’) and OBJECTPROPERTY(id, N’IsView’) = 1)
    -- 删除视图
    drop view [dbo].[视图名]
    GO

    ---------------
    -- 判断要创建的函数名是否存在
    if exists (select * from dbo.sysobjects where id = object_id(N’[dbo].[函数名]’) and xtype in (N’FN’, N’IF’, N’TF’))
    -- 删除函数
    drop function [dbo].[函数名]
    GO

    if col_length(’表名’, ’列名’) is null
    print ’不存在’

    select 1 from sysobjects where id in (select id from syscolumns where name=’列名’) and name=’表名’

  • 相关阅读:
    beego——过滤器
    beego——session控制
    Differentiation 导数和变化率
    验证码识别
    pip 下载慢
    ORB
    决策树
    机器学习第二章 配对网站
    K-近邻算法
    ubuntu下安装配置OpenCV
  • 原文地址:https://www.cnblogs.com/xffy1028/p/2344334.html
Copyright © 2011-2022 走看看