将跨年数据从跨年数据库转回当前数据库.sql 748 B

1234567891011121314
  1. declare @curdb nvarchar(100)
  2. declare @lastdb nvarchar(100)
  3. declare @lastCount int
  4. declare @filters nvarchar(500)
  5. declare @MyCount int
  6. declare @id nvarchar(100)
  7. select @lastCount=count(id) from [2014].[dbo].[dindan] where time1>='201-01-01' and time1<='2014-12-31' and status3='OK' and [002].[dbo].[dindan].[id] != [001].[dbo].[dindan].[id]
  8. while @lastCount > 0 begin
  9. select top 1 percent @id=id from [db].[dbo].[dindan] where time1>='201-01-01' and time1<='2014-12-31' and status3='OK' and [002].[dbo].[dindan].[id] != [001].[dbo].[dindan].[id]
  10. end
  11. --insert into [001].[dbo].[dindan] select * from [002].[dbo].[dindan] where time1>='201-01-01' and time1<='2014-12-31' and status3='OK' and [002].[dbo].[dindan].[id] != [001].[dbo].[dindan].[id]