Viewing 15 posts - 1,006 through 1,020 (of 1,157 total)
It sounds like there is some metadata remaining in your database which needs cleaning up.
You can try these.
sp_dropsubscription and sp_subscription_cleanup. If these arent working for you, you will likely...
April 16, 2011 at 4:18 am
We build all of our indexes online with the sort_in_tempdb option. This helps somewhat with contention on our busiest production servers.
April 16, 2011 at 4:02 am
From experience, adding tables to a publication through the GUI is a bad idea. IT can trigger a force_reinitialisation.
Use sp_addarticle. You will also need to re-add any subscriptions...
April 16, 2011 at 3:38 am
I should also point out, that you can get around the full snapshot by adding the subscription to the new subscriber a @syncronisation_type (?) = 'none' and restoring a full...
April 12, 2011 at 1:50 am
You only need to do it when you have made changes to the publication. Any other time is redundant.
If you've made changes to the publication correctly by script, the...
April 12, 2011 at 1:48 am
Based on this error you are either applying a snapshot or replicating a ddl change.
Basically the foreign key already exists at the subscriber and for some reason the if object_id...
April 12, 2011 at 1:44 am
You generally wont need to do anything too drastic. this is what I would do.
1. Confim the status of each subscriber in Replication monitor. Be careful not to...
April 11, 2011 at 5:51 am
One thing I may not have mentioned. If you are updating rows using a stored proc, including the sp in the publication will allow replication to depliver a single...
April 11, 2011 at 4:16 am
As it is taking so long, it suggests there are several million undelivered transactions. This is normally due to an unreachable subscriber or an error preventing deliverly.
If...
April 11, 2011 at 4:14 am
This would appear to be easier than the previous replies suggest since you have an existing database instance on a cluster.
1. Are you able to/allowed to host the this database...
April 11, 2011 at 1:22 am
Have you checked the space used? If there is plenty of empty space there is no reason why you cannot shrink the database to a more reasonable size. ...
April 8, 2011 at 1:53 pm
You "could" use a third party tool.
Apexsql Diff can create Database object snapshots. You apply the replication snapshot then use apexsql diff to compare the created Apex snapshot to...
April 3, 2011 at 3:27 am
I dont use the GUI much so I hadnt really noticed.
April 2, 2011 at 8:39 am
I'm not sure I follow you. Are you talking about the max memory setting in SQL Server, the physical memory registered in windows, the amount of memory used by...
April 2, 2011 at 8:36 am
Viewing 15 posts - 1,006 through 1,020 (of 1,157 total)