if(OBJECT_ID('tempdb.dbo.#tempTB') is not null)begin drop table #tempTB;end create table #tempTB(ID int NULL,Name nvarchar(50) NULL,Pwd varchar(50) NU ...
分类:
数据库 时间:
2019-01-31 15:46:26
阅读次数:
411
一 、建立cdc记录表用于每次增量的时间节点 create table dbo.cdc_capture_log ( cdc_capture_log_id int identity not null , capture_instance nvarchar(50) not null , start_ti ...
分类:
其他好文 时间:
2019-01-29 20:39:45
阅读次数:
275
原文:SQLSERVER查询数据库死锁的存储过程 USE [IdentityDemo] GO /****** Object: StoredProcedure [dbo].[sp_who_lock] Script Date: 2019/1/17 10:47:53 ******/ SET ANSI_NU... ...
分类:
数据库 时间:
2019-01-23 17:29:27
阅读次数:
200
在SQL Server指定的数据库中,有Programmability目录,在这个目录下,有存储过程,有功能函数。 比如上述,执行 is not a recognized function name. 上面报错,因为要加dbo.[function], select dbo.[fn_10to36_By ...
分类:
数据库 时间:
2019-01-20 20:53:03
阅读次数:
179
--1.导入去重:导入+去 重 sql中传入一个用户自定义表tb,删除现表与传入中已有的数据 DELETE dbo.SendExtendFee FROM @Tb b WHERE b.SendSite = dbo.SendExtendFee.SendSite AND b.SendWeb = SendE ...
分类:
数据库 时间:
2019-01-19 11:20:52
阅读次数:
219
Exec [msdb].dbo.sp_send_dbmail @profile_name='SQLMailConfig', @recipients = @email, //需要发送的邮箱 @subject=@emalSubject, //邮件标题 @body=@emailBody; //内容 ...
分类:
数据库 时间:
2019-01-14 16:33:47
阅读次数:
222
1.采用OPENDATASOURCE select top 10 *from OPENDATASOURCE('SQLOLEDB','Data Source=IP地址;User ID=连接用户名称;Password=连接用户密码' ).远程目标数据库.dbo.表名 2.采用联结服务器 --创建link ...
分类:
数据库 时间:
2019-01-11 23:14:39
阅读次数:
233
------updatesuhang06.pcbnet2002.dbo.mktxhglbseta.remark=b.remarkfrommktxhglbbinnerjoinsuhang06.pcbnet2002.dbo.mktxhglbaona.pdctno=b.pdctnowherea.pdctnoin(selectpdctnofrom#ppe002)anda.pdctno<>
分类:
其他好文 时间:
2019-01-11 15:14:33
阅读次数:
159
多表联查: select p.*,s.Sheng , i.Shifrom [dbo].[ProductRecordInfo] --表名 p left join [ShengInfo] s on p.ShengInfo = s.ShengId --使用left join左连接 让两个表中的指定字段产生 ...
分类:
数据库 时间:
2019-01-11 15:11:04
阅读次数:
220
实现日志表定时生成视图,为实现日志数据可视化分析提供基础 USE [ThreeToOne] GO /****** Object: StoredProcedure [dbo].[WTO_Scan_view1] Script Date: 01/08/2019 15:23:18 ******/ SET A ...
分类:
其他好文 时间:
2019-01-09 20:19:30
阅读次数:
223