SqlServer大数据量搬移

php中文网
发布: 2016-06-07 15:14:26
原创
1875人浏览过

方法一:分步搬移(针对百万 数据 量) -----remove data---------- insert into BizOfferSearch_Insert_Temp select top 2000000 id,0 isinsert from BizOfferSearch a with(nolock) where ISPUBLISHED=2 and ISPUBLISHED3 and tradingservicetype in(1,3,4)

方法一:分步搬移(针对百万数据量)
-----remove data----------
insert into BizOfferSearch_Insert_Temp
select top 2000000 id,0 isinsert
 from BizOfferSearch  a with(nolock) where  ISPUBLISHED>=2 and ISPUBLISHED3
    and  tradingservicetype in(1,3,4)   and id not like 'JS%'   
   
select * into #temp11 from BizOfferSearch_Insert_Temp where 1=2
while (select count(0) from BizOfferSearch_Insert_Temp where isinsert=0)>1
begin
    insert into #temp11
    select top 400 * from BizOfferSearch_Insert_Temp where isinsert=0
    insert into [192.168.1.61].offerhistorybybak.dbo.BizOfferSearch_APIDBDK_20100709_1
 select * from BizOfferSearch  a with(nolock) where ID in(select ID from #temp11)
 
    update BizOfferSearch_Insert_Temp set isinsert=1 where id in (select id from #temp11)
    truncate table #temp11
    waitfor delay '00:00:00.500'
end
truncate table #temp11
drop table #temp11
truncate table BizOfferSearch_Insert_Temp

-----delete data-------------------
select id,0 isdelete into #temp1 from [192.168.1.61].offerhistorybybak.dbo.BizOfferSearch_APIDBDK_20100709_1  with(nolock)
select * into #temp11 from #temp1 where 1=2
while (select count(0) from #temp1 where isdelete=0)>1
begin
    insert into #temp11
    select top 400 * from #temp1 where isdelete=0

 delete  bizoffersearch  with(rowlock) where id in  (select id from #temp11)

    update #temp1 set isdelete=1 where id in (select id from #temp11)
    truncate table #temp11
    waitfor delay '00:00:00.500'
end
truncate table #temp11
drop table #temp11
truncate table #temp1
drop table #temp1


方法二:bcp(针对千万以上的数据量)

如果数据量很大,通过分步搬移已经不能满足要求,这时我们可以考虑用bcp
步骤:
1. 将原数据导入到文件(运行时去掉换行,一次w记录)
  bcp "select top 5000000 * from BKOffer.dbo.BizOfferSearch  a with(nolock)
  where  ISPUBLISHED>=2 and ISPUBLISHED3 and  tradingservicetype in(1,3,4) 
  and id not like 'JS%'   "
  queryout H:\Contacts1.txt  -q -S"192.168.1.65" -c -T
 
2.将文件拷贝到备份机器

3.将文件中的数据导入到备份机器上的新表
  bcp offerhistorybybak.dbo.BizOfferSearch_APIDBDK_20100709 in H:\Contacts1.txt -T -c -m 1000

4.删掉原数据(BizOfferSearch_Insert_Temp表只存Id和标志位isinsert,值为0或1)
  insert into BizOfferSearch_Insert_Temp
 select id,0 from [192.168.1.61].offerhistorybybak.dbo.BizOfferSearch_APIDBDK_20100709   with(nolock)

 select * into #temp11 from BizOfferSearch_Insert_Temp where 1=2
 declare @rowcounts int
 select @rowcounts=count(0)/1000 from BizOfferSearch_Insert_Temp where isinsert=0
 while (@rowcounts)>=0
 begin
  insert into #temp11
  select top 1000 * from BizOfferSearch_Insert_Temp where isinsert=0

  delete  bizoffersearch  with(rowlock) where id in  (select id from #temp11)

  update BizOfferSearch_Insert_Temp set isinsert=1 where id in (select id from #temp11)
  truncate table #temp11
  select @rowcounts=@rowcounts-1
  waitfor delay '00:00:00.500'
 end
 truncate table #temp11
 drop table #temp11
 truncate table BizOfferSearch_Insert_Temp

飞扬过海

明日B2C电子商务系统源码
明日B2C电子商务系统源码

对于典型的数据库管理系统,尤其是B2C电子商务网站这样数据流量比较大的网络管理系统,必须要满足使用方便、操作灵活等设计需求。

明日B2C电子商务系统源码 0
查看详情 明日B2C电子商务系统源码
相关标签:
最佳 Windows 性能的顶级免费优化软件
最佳 Windows 性能的顶级免费优化软件

每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号