Yes, DB1 is MSSQL 2005 and DB2 is MSSQL2000. I haven't experience with "linked server" Can you indicate some examples. Thanks. Regards, Robert
Robert Vrinceanu
Posts
-
synchronization of two databases -
synchronization of two databasesThank you all. The problem is that databases DB1 and DB2 are on different computers.
-
synchronization of two databasesHi, I have two identical databases whitch are different only by name (DB1 and DB2) Eatch database is on one computer (PC1 and PC2) into a network. Database DB1 contains table Tab1. Database DB2 contains table Tab2. The two tables Tab1 and Tab2 are identical as structure an receive the same data from an external aplication. There are moments when the network is interrupted, from different causes and the two tables no longer contains the same data. To synchronize the tables I have to copy only the rows which are lost from Tab1 in Tab2. By a stored procedure i have to know which are the numbers of rows lost from Tab2 to fill in with rows from Tab1 I actually have to copy a number of lines from Tab1 in Tab2 with the condition to know which are the rows lost from Tab2. Someone knows how can I do that? Thanks.
-
Average value after 3 time intervals.Thanks for your answer. Unfortunately, I can't waive these time intervals. What I don't understand is why SELECT ID FROM dbo.TableTest WHERE Data BETWEEN CONVERT(DATETIME,(CONVERT(varchar(10),Data, 101)+ ' 10:00:00 PM'),101) AND CONVERT(DATETIME,(CONVERT(varchar(10),DATEADD(DAY,1,Data), 101)+ ' 06:00:00 AM'),101) return this: and not return: ID ID __ __ 1 1 2 2 19 3 20 19 21 20 34 21 35 22 23 24 25 26 &nbs
-
Average value after 3 time intervals.I have a simple table with 3 fields: ID, Tag1, Data ID Tag1 Data ________________________________ 1 2 6/1/2009 22:00 2 1 6/1/2009 23:00 3 2 6/2/2009 6:00 4 3 6/2/2009 7:00 5 2 6/2/2009 8:00 6 2 6/2/2009 9:00 7 2 6/2/2009 10:00 8 1 6/2/2009 11:00 9 2 6/2/2009 11:30 10 1 6/2/2009 13:00 11 2 6/2/2009 14:00 12 2 6/2/2009 15:00 13 2 6/2/2009 16:00 14 1 6/2/2009 17:00 15 2 6/2/2009 18:00 16 1 6/2/2009 19:00 17 1 6/2/2009 20:00 18 2 6/2/2009 21:00 19 2 6/2/2009 22:00 20 3 6/2/2009 23:00 21 1 6/2/2009 23:59 22 2 6/3/2009 1:00 23 3 6/3/2009 2:00 24 2 6/3/2009 3:00 25 3 6/3/2009 4:00 26 2 6/3/2009 5:00 27 3 6/3/2009 6:00 28 2 6/3/2009 7:00 29 3 6/3/2009 8:00 30 2 6/3/2009 9:00 31 3 6/3/2009 10:00 32 2 6/3/2009 11:00 33 1 6/3/2009 11:55 34 2 6/3/2009 22:00 35 2 6/