本篇文章討論的是有關數據庫之間數據傳送的問題
例如
這事就有幾種情況了
這裡還有個問題
下面的文檔會有很好的答案
具體示例
本篇文章討論的是有關數據庫之間數據傳送的問題
例如
這事就有幾種情況了
這裡還有個問題
下面的文檔會有很好的答案
具體示例
本篇文章討論的是有關數據庫之間數據傳送的問題
例如
這事就有幾種情況了
這裡還有個問題
下面的文檔會有很好的答案
一
利用數據庫自帶的向導進行數據庫之間的傳遞
好處
缺點
技巧
二
編寫相關的數據庫腳本
好處
缺點
技巧
具體示例
用途
具體的腳本程序
/*用途
步驟
declare @comid int
declare test cursor for
select DISTINCT comid
datediff(day
open test --打開游標
fetch next from test into @comid,@comtitle
while @@fetch_status = 0 --循環取數據
begin
declare @titletemp nvarchar(255)
declare test1 cursor for
select comtitle from dbB.dbo.tb_infogegu where comtitle=@comtitle and datediff(day,comdate,getdate()) = 0
open test1
fetch next from test1 into @titletemp
if( @@fetch_status = 0) --表中該記錄已經存在,刪除該記錄
DELETE FROM society WHERE comid=@comid
Else --不存在時,插入該記錄
begin
insert into dbB.dbo.tb_infogegu (comtitle,comcontent,comchannel,comdate,tradetype,stockcode, fromdate)
select top 1 comtitle,comcontent,comchannel,comdate,tradetype,stockcode, fromdate from society where comid=@comid order
by comdate
DELETE FROM society WHERE comid=@comid
end
close test1
deallocate test1
fetch next from test into @comid,@comtitle
end
DELETE FROM society
close test
deallocate test
GO
From:http://tw.wingwit.com/Article/program/SQLServer/201311/22150.html