Viewing 15 posts - 1 through 15 (of 115 total)
the status values are additive. So 17 means the article is active and uses parameters.
July 11, 2011 at 6:44 am
there is a 2 gig limit on the size of compressed snapshots. Microsoft has not fixed this problem yet or created a workaround.
January 4, 2010 at 6:23 am
issue an sp_repldone and then do the backup/truncate
July 13, 2007 at 3:57 am
try the -b switch for rows per batch.
July 4, 2006 at 5:06 am
bcp is one way to do it, you could also use bulk insert, or a select into in chunks of 100,000 rows a while loop. I think you will find...
July 4, 2006 at 5:04 am
It is possible to do both. You must add the SQL 2k box as a subscriber in Managment Studio to be able to do this.
June 28, 2006 at 5:58 am
This sounds like a bug. Can you tell me your sql server version (@@Version) and post your publication script, and table schema (with indexes) here?
--
Hilary Cotter
Looking for a SQL...
February 8, 2006 at 4:01 am
this error message says it can't find the publication test.
try the following if testdb if your publication database name
sp_replicationdboption 'testdb','publish','true'
go
use testdb
go
sp_addpublication 'test', @status='active'
go
--
Hilary Cotter
Looking for a SQL...
February 7, 2006 at 3:20 am
sp_MSload_replication_status
--
Hilary Cotter
Looking for a SQL Server replication book?
http://www.nwsu.com/0974973602.html
January 13, 2006 at 4:02 am
stop all activity on the publisher - kick all your users off. Drop the subscriber and then do a no sync push. You won't need to regenerate the snapshot and...
January 13, 2006 at 3:59 am
You should be fine. Managing identities is really only a concern when you are doing bi-directional replication.
October 28, 2005 at 8:29 am
You are best to let merge replication work its magic or regenerate and redistribute your snapshot.
--
Hilary Cotter
Looking for a SQL Server replication book?
http://www.nwsu.com/0974973602.html
Looking for a FAQ on Indexing...
October 20, 2005 at 6:06 am
Can the publisher ping the subcriber by netbios name? Go to your subscriber and issue the following.
xp_cmdshell 'echo %computername%'
select @@servername
These should be identical.
Do the same on the publisher. Again they...
October 20, 2005 at 6:04 am
You can do it with replication. When you are building your publication, and get to the select articles dialog, add the tables, then click on the browse button to the...
October 20, 2005 at 5:59 am
No its not possible. Each publisher can only use a single distribution database. A distributor can be a distributor for multiple publisher and this distributor can have a seperate distribution...
October 20, 2005 at 5:57 am
Viewing 15 posts - 1 through 15 (of 115 total)