Viewing 8 posts - 1 through 8 (of 8 total)
That's good news...
April 18, 2006 at 12:41 pm
Instead of altering the column, you can just create a new column copy the data. drop the old column add it again (to maintain the column name, with the correct...
April 12, 2006 at 12:12 pm
A quick follow-up...
I setup merge replication, and looked at the procs that are used for the replication. it does use rowguid, so you want those indexes...
Good luck.
April 12, 2006 at 11:31 am
I'm not as familiar with merge replication, but you can do the following. Usually that error message is timeout related (basically something is taking too long, and not reporting...
April 12, 2006 at 8:06 am
Try this...
The only thing is that you need to attach to the same server...
exec sp_configure 'allow updates', 1
reconfigure with override
go
update sysdatabases set category=0 where name='your db name here'
go
--detach here
--attach...
April 12, 2006 at 7:12 am
It simply looks like you have contention issues. Transactional or Merge?
April 10, 2006 at 1:12 pm
What I meant is that its the same thing. It does really matter how many subscribers you have. It will be a single Log Reader agent going againt the publisher. ...
April 10, 2006 at 9:21 am
Why not use the current publisher to both subscribers? Just break out the publication to 2 separate ones; one for one subsriber, and one for both subscribers.
April 10, 2006 at 8:41 am
Viewing 8 posts - 1 through 8 (of 8 total)