[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

microsoft.public.dotnet.framework.aspnet.webservices

Web Services vs Standard Replication

(megha)

7/22/2004 12:11:00 AM

I am interested in any suggestions you might have. I have different
heterogeneous databases (max 100 in number) which need to transfer
their data to a central SQL Server database. This is going to be one
way channel where central database consolidates the data which is
coming from different sources. Central location needs to be kept
up-to-date on a periodic basis. Each source can have max 50KB of data.
Is this transfer size decent enough to go through web services or
standard replication would be the better alternative?

Source database can be either SQL Server or Oracle. During the
synchronization period, each source will push the data to central
server at different time. Supposedly, concurrency is not going to be
an issue.

What approach should I pursue - what are the pros and cons of each?

Thanks in advance...
1 Answer

Dino Chiesa [Microsoft]

6/2/2004 11:29:00 PM

0

why use web services if you are doing database-to-database communication?
SQL Server and DTS seem to be well-suited to solving this problem. . .

-D

"megha" <meghapansari@yahoo.com> wrote in message
news:f21e292d.0406021105.4d456f5d@posting.google.com...
> I am interested in any suggestions you might have. I have different
> heterogeneous databases (max 100 in number) which need to transfer
> their data to a central SQL Server database. This is going to be one
> way channel where central database consolidates the data which is
> coming from different sources. Central location needs to be kept
> up-to-date on a periodic basis. Each source can have max 50KB of data.
> Is this transfer size decent enough to go through web services or
> standard replication would be the better alternative?
>
> Source database can be either SQL Server or Oracle. During the
> synchronization period, each source will push the data to central
> server at different time. Supposedly, concurrency is not going to be
> an issue.
>
> What approach should I pursue - what are the pros and cons of each?
>
> Thanks in advance...