代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
MSSQL
】
sql 工具函数
作者:
步帝
/ 发布于
2015/3/24
/
831
--select ObjectProperty(Object_ID( 'ReportSummaryStatisticLog'),'IsUserTable') -- 运行环境 sql server --判断数据库是否存在 if exists(select * from master..sysdatabases where name=N'HealthService') print 'exists HealthService' else print 'not exists HealthService ' --------------- -- 判断要创建的表名是否存在 if exists (SELECT ObjectProperty(Object_ID( 'ReportSummaryStatisticLog'),'IsUserTable')) BEGIN -- 删除表 --drop table [dbo].[ReportSummaryStatisticLog] print 'exist ReportSummaryStatisticLog' END ELSE BEGIN print 'NOT exist ReportSummaryStatisticLog' END GO -- this sql is wrong --if exists (select * from dbo.sysobjects where id= object_id(N'[dbo].[ReportSummaryStatisticLog]') -- and OBJECTPROPERTY(id,N'IsUserTable') = 1) --BEGIN -- -- 删除表 -- --drop table [dbo].[ReportSummaryStatisticLog] -- print 'exist ReportSummaryStatisticLog' --END --ELSE --BEGIN -- print 'NOT exist ReportSummaryStatisticLog' --END --GO --------------- --判断要创建临时表是否存在 If Object_Id( 'Tempdb.dbo.#Test ') Is Not Null Begin print 'exist #Test' End Else Begin print 'not exist #Test' create table #Test (FIELD1 INT,FIELD2 INT) End -- this sql is wrong ---- 判断要创建的存储过程名是否存在 --if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[sp_AddBloodPressure]') -- and OBJECTPROPERTY(id,N'IsProcedure') = 1) --BEGIN -- -- 删除存储过程 -- --drop procedure [dbo].[sp_AddBloodPressure] -- print 'exist sp_AddBloodPressure' --END --ELSE --BEGIN -- print 'NOT exist sp_AddBloodPressure' --END --GO -- this sql is wrong ---- 判断要创建的视图名是否存在 --if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[view_UserSurveyLog]') -- and OBJECTPROPERTY(id,N'IsView') = 1) --BEGIN -- -- 删除视图 -- --drop view [dbo].[view_UserSurveyLog] -- print 'exist view_UserSurveyLog' --END --ELSE --BEGIN -- print 'NOT exist view_UserSurveyLog' --END --GO -- this sql is wrong ---- 判断要创建的函数名是否存在 --if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[fn_GetAge]') -- and xtype in (N'FN', N'IF', N'TF')) --BEGIN -- -- 删除函数 -- --drop function [dbo].[fn_GetAge] -- print 'exist fn_GetAge' --END --ELSE --BEGIN -- print 'NOT exist fn_GetAge' --END --GO -- 判断表是否存在 -- this sql is wrong --if exists (select 1 from sys.objects where name = 'ReportSummaryStatisticLog') -- begin print 'exist ReportSummaryStatisticLog'end --else -- begin print ' not exist ReportSummaryStatisticLog'end if exists (select ObjectProperty(Object_ID( 'ReportSummaryStatisticLog'),'IsUserTable')) begin print 'exist ReportSummaryStatisticLog'end else begin print ' not exist ReportSummaryStatisticLog'end -- 判断列是否存在 -- this sql is wrong --if col_length('dbo.ReportSummaryStatisticLog','ReportKey') is not null -- begin print 'exist db field ReportKey' end --else -- begin print 'not exist db field ReportKey' end -- 判断列是否存在 use HealthService go IF EXISTS(select a.Name as tableName from sysobjects a inner join syscolumns b on a.ID=b.ID where b.Name='ReportKey' -- COLUMN NAME AND A.name='ReportSummaryStatisticLog' -- TABLE_NAME ) BEGIN PRINT 'EXIST COLUMN ReportKey' END ELSE BEGIN PRINT 'NOT EXIST COLUMN ReportKey' END --判断sql job 是否存在 IF EXISTS (SELECT job_id FROM msdb.dbo.sysjobs_view WHERE name = N'CreateReportStatisticForAllUsers') BEGIN --EXEC msdb.dbo.sp_delete_job @job_name=N'CreateReportStatisticForAllUsers', @delete_unused_schedule=1 print 'exist CreateReportStatisticForAllUsers' END ELSE BEGIN print 'NOT exist CreateReportStatisticForAllUsers' END GO -- 立即执行sql job use msdb IF EXISTS (SELECT job_id FROM msdb.dbo.sysjobs_view WHERE name = N'CreateReportStatisticForAllUsers') begin --exec sp_start_job @job_name='CreateReportStatisticForAllUsers' print 'exist CreateReportStatisticForAllUsers' end ELSE BEGIN print 'NOT exist CreateReportStatisticForAllUsers' END -- 游标 遍历某个数据库中所有的表 BEGIN PRINT 1 --DECLARE @Name nvarchar(255),@Sql nvarchar(4000) --DECLARE TName CURSOR FOR --SELECT [name] FROM sysobjects WHERE xtype = 'U' --OPEN TName --FETCH NEXT FROM TName INTO @Name --WHILE @@FETCH_STATUS = 0 --BEGIN -- SET @Sql='SELECT TOP 2 * FROM ['+@name + '] WHERE 1=1 -- -- 这里还可以拼其它你想要的过滤条件 -- ' -- EXEC(@Sql) -- FETCH NEXT FROM TName INTO @name --END --CLOSE TName --DEALLOCATE TName END
试试其它关键字
sql
工具函数
同语言下
.
SQL查询 多列合并成一行用逗号隔开
.
查看存储过程修改时间,最近执行时间
.
设置手动批量删除数据库相关进程
.
获取某个表中特定字段的所有字符串形式
.
SQL 如何去除重复的字符串
.
怎么去掉一个字段中的重复数据
.
String 去除空格 回车 换行 水平制表符
.
SQL查询和替换含有回车,空格,TAB
.
SQL SERVER 查询每日新增用户数量、次留数量
.
判断两个字符串是否存在相同的内容
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
步帝
贡献的其它代码
(
12
)
.
列出 sql server某个数据库的角色 及 表名
.
如何判断程序调用的exe已结束
.
字符串分割
.
取文件大小
.
取文件的大小
.
用sql语句创建sql job
.
从某个目录中筛选文件
.
sql server 日期操作相关
.
通过 Handler 导出数据至excel
.
查询某个数据库下所有用到某张数据表的数据库对象: 存
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3