zoukankan      html  css  js  c++  java
  • 判断对象是否存在 (if exists (select * from sysobjec...

    1 判断数据库是否存在

    Sql代码
    if exists (select * from sys.databases where name = ’数据库名’) drop database [数据库名]

    if exists (select * from sys.databases where name = ’数据库名’)
    drop database [数据库名]

    2 判断表是否存在

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

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

    3 判断存储过程是否存在

    Sql代码
    if exists (select * from sysobjects where id = object_id(N’[存储过程名]’) and OBJECTPROPERTY(id, N’IsProcedure’) = 1)
    drop procedure [存储过程名]

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

    4 判断临时表是否存在

    Sql代码
    if object_id(’tempdb..#临时表名’) is not null
    drop table #临时表名

    if object_id(’tempdb..#临时表名’) is not null
    drop table #临时表名

    5 判断视图是否存在

    Sql代码
    --SQL Server 2000
    IF EXISTS (SELECT * FROM sysviews WHERE object_id = ’[dbo].[视图名]’
    --SQL Server 2005
    IF EXISTS (SELECT * FROM sys.views WHERE object_id = ’[dbo].[视图名]’
    --SQL Server 2000
    IF EXISTS (SELECT * FROM sysviews WHERE object_id = ’[dbo].[视图名]’
    --SQL Server 2005
    IF EXISTS (SELECT * FROM sys.views WHERE object_id = ’[dbo].[视图名]’

    6 判断函数是否存在

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

    7 获取用户创建的对象信息

    Sql代码
    SELECT [name],[id],crdate FROM sysobjects where xtype=’U’
    SELECT [name],[id],crdate FROM sysobjects where xtype=’U’

    8 判断列是否存在

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

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

    9 判断列是否自增列

    Sql代码
    if columnproperty(object_id(’table’),’col’,’IsIdentity’)=1 print ’自增列’ else print ’不是自增列’

    SELECT * FROM sys.columns WHERE object_id=OBJECT_ID(’表名’) AND is_identity=1 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 判断表中是否存在索引

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

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

    11 查看数据库中对象

    Sql代码
    SELECT * FROM sys.sysobjects WHERE name=’对象名’
    SELECT * FROM sys.sysobjects WHERE name=’对象名’

    12对于游标的存储,判断是这样写的

    if exists(select * from master.dbo.syscursors where cursor_name='游标名')
    begin deallocate 游标名 end

  • 相关阅读:
    [css]display: table-cell,用div做分列布局
    [css]《CSS知多少》
    关于安装Android Studio的一些问题的解决方法
    枚举
    揭开计算机的神秘面纱
    Android模拟器访问本地Web应用
    Android开发中常用的Eclipse快捷键
    详解Windows平台搭建Androiod开发环境
    Web 应用的安全性
    坚持才能成功------王健林
  • 原文地址:https://www.cnblogs.com/--zl--/p/8616116.html
Copyright © 2011-2022 走看看