Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2000 Forums
 SQL Server Administration (2000)
 DTS/StoredProcs/Replication

Author  Topic 

TellyBrown
Starting Member

6 Posts

Posted - 2000-11-14 : 15:36:51
The problem here at my work is that our import is causing a huge number of transactions to be sent to our (dest)replicated server.
The scenerio is as follows:
1. We import about 40000 rows into some tables that reside in a different database than that of my (source)replicated database. This database is NOT replicated.
2. We then use that database to update the (source)replicated database. This does not update/insert/delete 60000 transactions, more like 2000. FYI this is done by DTS calling multiple Stored Procs.
3. Our distibution server sends 60000 transactions to the (dest)replicated database. This takes a while for the (dest)replicated database to absorbe, causing downtime due to locks.

I have mentioned to my dba that this is probably caused by the temp tables that I create in my procs. He insists that it is not.
He thinks that it is caused by DTS sending over all the transactions once it is finished.
I told him that it cannot be DTS because this was happening when the SQL statements were all done in one Stored proc.
   

- Advertisement -