if OBJECT_ID(N'tTriage',N'U') is not null print '表存在!' else print '表不存在!' --建表 看看我 ...
分类:
数据库 时间:
2021-02-05 10:35:00
阅读次数:
0
方法一: Set NoCount On if exists(select * from tempdb..sysobjects where id=object_id('tempdb..##tempEANReport'))Begin drop table ##tempEANReportEndCreate ...
分类:
数据库 时间:
2021-01-19 12:01:00
阅读次数:
0
原文链接:https://card.weibo.com/article/m/show/id/2309404494800391897318?_wb_client_=1&object_id=1022%3A2309404494800391897318&extparam=lmid--449480039449 ...
分类:
其他好文 时间:
2020-12-17 12:52:02
阅读次数:
2
如下 SELECT i.name AS [索引名称], SUM(s.used_page_count) * 8 AS [索引大小KB] FROM sys.dm_db_partition_stats AS s JOIN sys.indexes AS i ON s.[object_id] = i.[obj ...
分类:
数据库 时间:
2020-11-25 12:21:37
阅读次数:
11
select * from UserInfo 添加存储过程 if OBJECT_ID('P_add') is not nulldrop proc P_addgocreate proc P_add--参数@UserName varchar(100),@UserPwd varchar(100),@Use ...
分类:
其他好文 时间:
2020-09-02 18:13:27
阅读次数:
63
多条件分页: 分页存储过程--判断存储过程是否存在if OBJECT_ID('proc_Page') is not null--删除存储过程drop proc proc_Pagego--创建存储过程create proc proc_Page--参数@ClaId int=0, --班级Id@Sage ...
分类:
数据库 时间:
2020-08-27 13:09:24
阅读次数:
58
--CREATE PROCEDURE PF_ETL_BA_AR_KH (@BeginDate datetime, @IncreaseFlag int, @DataSource nvarchar(40)) --as if object_id('tempdb..#temp_u8_ar_age_kh') ...
分类:
数据库 时间:
2020-07-29 21:19:52
阅读次数:
102
--第一步:查看是否需要维护,查看扫描密度/Scan Density是否为100%declare @table_id intset @table_id=object_id('ICMO')dbcc showcontig(@table_id) --第二步:重构表索引dbcc dbreindex('t_S ...
分类:
其他好文 时间:
2020-07-29 10:37:38
阅读次数:
81
-- 查看被锁对象 select object_name, machine, s.sid, s.serial# from v$locked_object l, dba_objects o, v$session s where l.object_id = o.object_id and l.sessi ...
分类:
数据库 时间:
2020-07-28 17:10:59
阅读次数:
81
if not exists(select * from sys.columns where [object_id] = object_id('szydytglhyytb') and name = 'SZYDYTGLHYYTB_HYBM') BEGINalter table szydytglhyytb ...
分类:
其他好文 时间:
2020-07-28 13:54:54
阅读次数:
56