Viewing 10 posts - 91 through 100 (of 100 total)
The same topic goes on http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=5&messageid=259826
August 17, 2007 at 1:16 am
Are you guys running queries with (nolock) clause or after in read uncommitted transaction isolation level? If this is the case, then no wonder - this is by design, just...
August 16, 2007 at 7:37 am
The big question is: Who is the distributor?
Usually, the distributor is the same as the publisher, this is the default. In this case...
August 15, 2007 at 8:16 am
Steve,
If you have continuous replication, set up an additional schedule for the distribution agent. Set it to run in every 5 minutes. This way, in case of the replication job...
August 15, 2007 at 8:05 am
Hi,
These were my thoughts, I do like separating SQL data from OS totally and I don't believe in separating indexes from table data. Many people think the opposite.
As I saw...
August 15, 2007 at 6:59 am
Hi,
First of all, if you're new to replication, I suggest you to read the first few chapters from SQL BOL (Books Online). It's really worth it.
Do you mean the distribution...
August 15, 2007 at 5:11 am
Hi Mindy,
When we had similar problem, we must have disabled the logging at the ODBC connection, and after that we could read the log file. Give it a try...
August 14, 2007 at 6:48 am
Hi,
Some thoughts:
1. I wouldn't put the system databases (basically any dbs) to the OS partition. I'd put them next to the distribution and other small dbs.
2. Blocking in itself is...
August 14, 2007 at 6:45 am
Hi,
You have two choices:
1. Use the WITH (NOLOCK) clause mentioned above, this case you'll read out uncommitted transactions as well.
2. Use the WITH (READPAST) clause, this case you'll skip the...
August 14, 2007 at 2:59 am
Hi,
This means that your distribution agents were blocked somehow. Either by each other or - which is more frequent at us - by the Logreader Agent. Check the distribution.dbo.msrepl_transactions table...
August 14, 2007 at 2:42 am
Viewing 10 posts - 91 through 100 (of 100 total)