Viewing 15 posts - 496 through 510 (of 5,103 total)
chileu17 (2/18/2009)
February 18, 2009 at 11:37 am
833.33 trasactions/sec is respectable if sustained.
Replication can handle it if correctly configured so that distribution does not becomes a bottleneck
I have replicated Billion+ row tables without problem but it...
February 18, 2009 at 11:32 am
Make sure you set the DB to compatibility mode 9.0, Update stats with fullscan,all and update usage!
That should do it!
February 18, 2009 at 11:06 am
"SELECT INTO" locks metadata tables for the duration of the operation.
February 18, 2009 at 11:01 am
500MB is not a lot for a 1TB database.
You should have an Idea how much time it takes on your hardware to do that.
Hopefully you are taking advantage...
February 18, 2009 at 9:10 am
with transactional replication by default the replicas are "read-only" if you modify the replica table you will receive primary key violation errors.
If you expect to change data on the replicated...
February 18, 2009 at 8:36 am
You need to ensure that on the "destination object owner" property of your table articles you specify the "right" schema.
By the way you have to re-create your replication settings.
February 18, 2009 at 8:33 am
ritesh (2/18/2009)
"The process could not execute 'sp_repldone/sp_replcounters' on 'servername'.
and the synchronysation status gave...
February 18, 2009 at 8:30 am
TroyG (2/16/2009)
After getting confirmation from Microsoft it would appear as...
February 18, 2009 at 8:26 am
This message tends to happen at index creation time after the data has been transferred by the snapshot job
February 18, 2009 at 8:19 am
if you want to FORCE lock type on both use "WITH (ROWLOCK)"
February 18, 2009 at 8:14 am
In addition failover clustering does NOT recover client connections that could time-out.
Connection interruption code *must* be present on the client-side code!
February 13, 2009 at 8:39 am
matt.ma (2/11/2009)
I am implementing transaction replication using the 'sync with backup' option so that I can still have point-in-time recovery available while scaling out the application to a separate...
February 13, 2009 at 8:35 am
Viewing 15 posts - 496 through 510 (of 5,103 total)