SP0_AddLinkedServer.sql [创建Linked SQL Server ]

USE [master]
GO if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[SP_Temp_AddLinkedServer]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
drop procedure dbo.SP_Temp_AddLinkedServer;
GO create procedure dbo.SP_Temp_AddLinkedServer
@@cloudServerIP nvarchar(250),
@@cloudServerSA nvarchar(50),
@@cloudSAPWD nvarchar(50)
AS
begin IF EXISTS(SELECT * FROM sys.servers WHERE name = @@cloudServerIP)
EXEC master.sys.sp_dropserver @@cloudServerIP,'droplogins' declare @TargetServer nvarchar(50)
declare @strcloudServerIP nvarchar(50)
declare @strcloudServerSA nvarchar(50)
declare @strcloudSAPWD nvarchar(50) set @strcloudServerIP = @@cloudServerIP
set @strcloudServerSA = @@cloudServerSA
set @strcloudSAPWD = @@cloudSAPWD
EXEC master.dbo.sp_addlinkedserver @server = @strcloudServerIP, @srvproduct=N'SQL Server'
/* For security reasons the linked server remote logins password is changed with ######## */
EXEC master.dbo.sp_addlinkedsrvlogin @rmtsrvname=@strcloudServerIP,@useself=N'False',@locallogin=NULL,@rmtuser=@strcloudServerSA ,@rmtpassword=@strcloudSAPWD EXEC master.dbo.sp_serveroption @server=@strcloudServerIP, @optname=N'collation compatible', @optvalue=N'false' EXEC master.dbo.sp_serveroption @server=@strcloudServerIP, @optname=N'data access', @optvalue=N'true' EXEC master.dbo.sp_serveroption @server=@strcloudServerIP, @optname=N'dist', @optvalue=N'false' EXEC master.dbo.sp_serveroption @server=@strcloudServerIP, @optname=N'pub', @optvalue=N'false' EXEC master.dbo.sp_serveroption @server=@strcloudServerIP, @optname=N'rpc', @optvalue=N'false' EXEC master.dbo.sp_serveroption @server=@strcloudServerIP, @optname=N'rpc out', @optvalue=N'false' EXEC master.dbo.sp_serveroption @server=@strcloudServerIP, @optname=N'sub', @optvalue=N'false' EXEC master.dbo.sp_serveroption @server=@strcloudServerIP, @optname=N'connect timeout', @optvalue=N'' EXEC master.dbo.sp_serveroption @server=@strcloudServerIP, @optname=N'collation name', @optvalue=null EXEC master.dbo.sp_serveroption @server=@strcloudServerIP, @optname=N'lazy schema validation', @optvalue=N'false' EXEC master.dbo.sp_serveroption @server=@strcloudServerIP, @optname=N'query timeout', @optvalue=N'' EXEC master.dbo.sp_serveroption @server=@strcloudServerIP, @optname=N'use remote collation', @optvalue=N'true' EXEC master.dbo.sp_serveroption @server=@strcloudServerIP, @optname=N'remote proc transaction promotion', @optvalue=N'true' end --use master exec SP_Temp_AddLinkedServer '10.1.12.110','sa','Sequoia2012'

SP1_LoadTablesName.sql [SQL读取文本文件,并插入表内。]

if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[SP_Temp_GetCompareNameList]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)

drop procedure dbo.SP_Temp_GetCompareNameList;
GO create procedure dbo.SP_Temp_GetCompareNameList
@@filePath varchar(250)
--@@totalAmount numeric(15,3)=0 output
AS BEGIN
declare @TableNameConfigureFile varchar(250)
declare @SQLExeStr varchar(300) set @TableNameConfigureFile = @@filePath /* Remove temp table */
if object_id('Temp_Table_CompareTableName') is not null
Begin drop table Temp_Table_CompareTableName End exec ('CREATE TABLE Temp_Table_CompareTableName(strName varchar(100))') set @SQLExeStr = 'bulk INSERT Temp_Table_CompareTableName
from ' + '''' + @TableNameConfigureFile + ''''+
' with(
FIELDTERMINATOR = ''\t'',
ROWTERMINATOR = ''\n''
) ' exec (@SQLExeStr) --select *from #CompareTableName
--select *from tempdb..#CompareTableName
--print @SQLExeStr
-- exec SP_Temp_GetCompareNameList 'C:\ComparedTableList.txt'
--select *from CompareTableName
end

SP2_GetTableColumns.sql [调用系统表功能,读取某一表的所有列信息。]

if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[SP_Temp_GetTableColumns]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)

drop procedure dbo.SP_Temp_GetTableColumns;
GO create procedure dbo.SP_Temp_GetTableColumns
@@tableName nvarchar(250) AS BEGIN
declare @strTableName varchar(250)
declare @SQLExeStr varchar(4000) set @strTableName = @@tableName /* Remove temp table */
if object_id('Temp_Table_TableColumns') is not null
Begin
drop table Temp_Table_TableColumns
End
set @SQLExeStr = 'Select name into Temp_Table_TableColumns from SysColumns Where id=Object_Id(''' + @strTableName + ''')
and name <> ''AuditTimestamp''
and name <> ''CreatedTime''
and name <> ''InstallTime''
and name <> ''StartTime''
and name <> ''ModificationTime''
and name <> ''LockTime''
and name <> ''LastActivityDate''
and name <> ''MasterPageImage''
and name <> ''LastLoginDate''
'
--print @SQLExeStr
exec (@SQLExeStr)
end --exec SP_Temp_GetTableColumns 'dbo.RexStatementTransaction'
--select *from TableColumns

SP3_CompareTwoTable.sql [ 使用SQL Except 语句,比较同结构表内容 ]

if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[SP_Temp_CompareTables]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
drop procedure dbo.SP_Temp_CompareTables;
GO create procedure dbo.SP_Temp_CompareTables
@@compareTableName nvarchar(250),
@@compareRes int output,
@@cloudServerIP nvarchar(50) ,
@@cloudDBName nvarchar(50) AS BEGIN declare @TableName nvarchar(250)
declare @SQLExeStr nvarchar(300)
declare @strSQLLoadTableColumns nvarchar(300)
declare @strcloudServerIP nvarchar(300)
declare @strcloudDBName nvarchar(300) declare @selColumns nvarchar(3000)
declare @finalSelColumns nvarchar(3000)
DECLARE @count int -- column numbers
DECLARE @testResult int /*Test Result flag*/ set @TableName = @@compareTableName
set @strcloudServerIP = @@cloudServerIP
set @strcloudDBName = @@cloudDBName
set @testResult = 1 /*Default Value as false*/ /*Print out the info of comparing table*/
select dbo.FN_Temp_LogInfo( 'Testing The Table:' +@TableName) set @strSQLLoadTableColumns = 'exec SP_Temp_GetTableColumns ' + '''' + @TableName + ''''
exec(@strSQLLoadTableColumns) -- call SP for insert the table's column to our test using table
--SELECT @count= COUNT(1) FROM Temp_Table_TableColumns
select @selColumns = isnull(@selColumns,'') + ',' + name from Temp_Table_TableColumns where name=name
--print @selColumns
set @finalSelColumns = SubString(@selColumns,2,LEN(@selColumns)) BEGIN
declare @sqlCloudQueryStr nvarchar(3000)
declare @sqlGroundQueryStr nvarchar(3000)
declare @finalSqlExec nvarchar(4000)
declare @withStart nvarchar(100)
declare @withEnd nvarchar(100) set @withStart = 'select @a=count(1)' + ' from ('
set @withEnd = ')T'
/* Get the final exec SQL compare statement*/
set @sqlGroundQueryStr = ' select ' + @finalSelColumns + ' from ' + @TableName + ' except '
set @sqlCloudQueryStr = 'select *from OPENQUERY( [' + @strcloudServerIP + '], ''select ' + @finalSelColumns + ' from ' + @strcloudDBName +'.' + @TableName + ''''+ ')'
set @finalSqlExec = @withStart + @sqlGroundQueryStr + @sqlCloudQueryStr + @withEnd declare @num int
BEGIN TRY
EXECUTE sp_executesql @finalSqlExec,N'@a int output',@num output IF(@num > 0)
Begin
set @testResult = 1
/*Set the case info*/
select dbo.FN_Temp_LogInfo(' >>>>>> Comparing Exception <<<<<<' )
select dbo.FN_Temp_LogInfo(' Exception Table:' + @TableName )
select dbo.FN_Temp_LogInfo(' Exception Query:' + @finalSqlExec)
select dbo.FN_Temp_LogInfo(' ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^')
End
else
set @testResult = 0
End TRY
BEGIN CATCH
set @testResult = 1
select dbo.FN_Temp_LogInfo(' >>>>>> SQL Execution Exception <<<<<<' )
select dbo.FN_Temp_LogInfo(' Exception Table:' + @TableName )
select dbo.FN_Temp_LogInfo(' Exception Query:' + @finalSqlExec)
select dbo.FN_Temp_LogInfo(' SQL Error:' + ERROR_MESSAGE())
select dbo.FN_Temp_LogInfo(' ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^')
End Catch
END set @@compareRes = @testResult
/*Set the case result*/
select dbo.[FN_Temp_LogRes](@TableName,@testResult)
return @@compareRes
end --declare @iTemp int
--exec SP_Temp_CompareTables 'ApxAdaptorDb101.APXAdaptor.Session', @iTemp output,'10.1.12.110', 'ApxAdaptorDb101'

T-SQL 总结的更多相关文章

  1. 最近帮客户实施的基于SQL Server AlwaysOn跨机房切换项目

    最近帮客户实施的基于SQL Server AlwaysOn跨机房切换项目 最近一个来自重庆的客户找到走起君,客户的业务是做移动互联网支付,是微信支付收单渠道合作伙伴,数据库里存储的是支付流水和交易流水 ...

  2. SQL Server 大数据搬迁之文件组备份还原实战

    一.本文所涉及的内容(Contents) 本文所涉及的内容(Contents) 背景(Contexts) 解决方案(Solution) 搬迁步骤(Procedure) 搬迁脚本(SQL Codes) ...

  3. Sql Server系列:分区表操作

    1. 分区表简介 分区表在逻辑上是一个表,而物理上是多个表.从用户角度来看,分区表和普通表是一样的.使用分区表的主要目的是为改善大型表以及具有多个访问模式的表的可伸缩性和可管理性. 分区表是把数据按设 ...

  4. SQL Server中的高可用性(2)----文件与文件组

        在谈到SQL Server的高可用性之前,我们首先要谈一谈单实例的高可用性.在单实例的高可用性中,不可忽略的就是文件和文件组的高可用性.SQL Server允许在某些文件损坏或离线的情况下,允 ...

  5. EntityFramework Core Raw SQL

    前言 本节我们来讲讲EF Core中的原始查询,目前在项目中对于简单的查询直接通过EF就可以解决,但是涉及到多表查询时为了一步到位就采用了原始查询的方式进行.下面我们一起来看看. EntityFram ...

  6. 从0开始搭建SQL Server AlwaysOn 第一篇(配置域控)

    从0开始搭建SQL Server AlwaysOn 第一篇(配置域控) 第一篇http://www.cnblogs.com/lyhabc/p/4678330.html第二篇http://www.cnb ...

  7. 从0开始搭建SQL Server AlwaysOn 第二篇(配置故障转移集群)

    从0开始搭建SQL Server AlwaysOn 第二篇(配置故障转移集群) 第一篇http://www.cnblogs.com/lyhabc/p/4678330.html第二篇http://www ...

  8. 从0开始搭建SQL Server AlwaysOn 第三篇(配置AlwaysOn)

    从0开始搭建SQL Server AlwaysOn 第三篇(配置AlwaysOn) 第一篇http://www.cnblogs.com/lyhabc/p/4678330.html第二篇http://w ...

  9. 从0开始搭建SQL Server AlwaysOn 第四篇(配置异地机房节点)

    从0开始搭建SQL Server AlwaysOn 第四篇(配置异地机房节点) 第一篇http://www.cnblogs.com/lyhabc/p/4678330.html第二篇http://www ...

  10. SQL Server on Linux 理由浅析

    SQL Server on Linux 理由浅析 今天的爆炸性新闻<SQL Server on Linux>基本上在各大科技媒体上刷屏了 大家看到这个新闻都觉得非常震精,而美股,今天微软开 ...

随机推荐

  1. django urlencode

    from django.utils.http import urlquote a = urlquote('分享') print(a)

  2. 重塑 data.table

    在前面的章节中,我们已经学习了如何使用 reshape2 扩展包对 data.frame 进行塑形.其实,data.table 扩展包为 data.table 对象提供了更快更强的 dcast( ) ...

  3. kafka 官方示例代码--消费者

    kafka 0.9.0添加了一套新的Java 消费者API,用以替换之前的high-level API (基于ZK) 和low-level API.新的Java消费者API目前为测试版.另外kafka ...

  4. hdu1846巴什博弈

    巴什博弈:只有一堆n个物品,两个人轮流从这堆物品中取物, 规定每次至少取一个,最多取m个.最后取光者得胜. 结论:只要不能整除,那么必然是先手取胜,否则后手取胜. #include<map> ...

  5. HDU 4522 (恶心建图)

    湫湫系列故事——过年回家 Time Limit: 500/200 MS (Java/Others)    Memory Limit: 65535/32768 K (Java/Others)Total ...

  6. 阿里云负载均衡配置https记录

    配置前端协议是443,后端是80 问题1记录: 例如访问https://www.xxx.com,在后端服务器上面获取是http还是https请求协议实际上是http: 因为我们先请求负载均衡,负载均衡 ...

  7. SpringBoot 使用 EhCache2.x 缓存(三十一)

    SpringBoot 使用 EhCache2.x 缓存入门很简单,废话少说上干货: 1.在POM.xml中增加jar包 <!--开启 cache 缓存--> <dependency& ...

  8. Fedora BCM43142 无线网卡驱动安装

    OS:Fedora 25 KDE 系统内核:4.10.16-200.fc25.x86_64 #1 网卡:BCM43142 1.识别自己的网卡型号:命令:lspci | grep -i broadcom ...

  9. Web 端屏幕适配方案

    基础知识 像素相关 1.像素 :像素是屏幕显示最小的单位. 2.设备像素 :设备像素又称物理像素(physical pixel),设备能控制显示的最小单位,我们可以把这些像素看作成显示器上一个个的点. ...

  10. django2 显示图片 输出图片

    使用笨办法,指向图片的路径,然后输出图片. 首先路由设置: # 查看图片 path('tu/', ShowTuView.as_view(), name='image') 视图代码: import os ...