码迷,mamicode.com
首页 >  
搜索关键字:dbo    ( 1628个结果
SQLServer获取临时表列名
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
SSIS+CDC 增量抽取数据
一 、建立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查询数据库死锁的存储过程
原文: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 中常用的功能函数,自定义的功能行数
在SQL Server指定的数据库中,有Programmability目录,在这个目录下,有存储过程,有功能函数。 比如上述,执行 is not a recognized function name. 上面报错,因为要加dbo.[function], select dbo.[fn_10to36_By ...
分类:数据库   时间:2019-01-20 20:53:03    阅读次数:179
常见Sql代码
--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
sqlserver数据库发送邮箱
Exec [msdb].dbo.sp_send_dbmail @profile_name='SQLMailConfig', @recipients = @email, //需要发送的邮箱 @subject=@emalSubject, //邮件标题 @body=@emailBody; //内容 ...
分类:数据库   时间:2019-01-14 16:33:47    阅读次数:222
SQl 跨服务器查询脚本示例
1.采用OPENDATASOURCE select top 10 *from OPENDATASOURCE('SQLOLEDB','Data Source=IP地址;User ID=连接用户名称;Password=连接用户密码' ).远程目标数据库.dbo.表名 2.采用联结服务器 --创建link ...
分类:数据库   时间:2019-01-11 23:14:39    阅读次数:233
a表字段替换B表字段
------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
SQLServer多表联查,多表分页查询
多表联查: 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
1628条   上一页 1 ... 15 16 17 18 19 ... 163 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!