Viewing 15 posts - 61 through 75 (of 121 total)
if repl is already setup, u can add a new table if you like via the gui or syntax. Since you are asking, you should do it via the...
August 20, 2008 at 5:32 pm
NULL will never equal to NULL if you write it like @variable = NULL.
Write it as @variable IS NULL
And what's the exact error?
August 20, 2008 at 5:29 pm
is your smtp server setup correctly? does the smtp server allow your ip address to be a relay?
look up dbmail setup in BOL to see the status of those...
August 20, 2008 at 5:07 pm
sp_addlinkedserver is the syntax you want to use
it allows you to query remote servers w/o having to actually connect to it.
[from serverA]
exec serverb...sp_who2 active
August 20, 2008 at 4:58 pm
haven't tried this myself but would it be possible create multiple publication based on 1 table and use filtering?
May 23, 2008 at 7:12 pm
he would have to drop all the articles if they are part of one publication, which means, the snapshot will send everything to the subscribers.
you can always break out your...
May 23, 2008 at 7:06 pm
on the subscriber, you can look under the replication hive and see local subscription. If that's there, then the database that you are replication is being replicated.
or you can...
May 23, 2008 at 7:03 pm
you can see what happens during replication via SQL profiler.
April 29, 2008 at 5:28 pm
you can use the group by statement to find your dupes and based on the group by, write a delete statement to nuke it.
you can also use the OUTPUT function...
April 29, 2008 at 5:27 pm
padmaja.mantha (4/29/2008)
April 29, 2008 at 5:24 pm
figured it out
Declare @value_list varchar(500)
, @sql nvarchar(max)
Set @value_list = '''attribute'', ''catalog_object'''
set @sql = 'Select count(*) from tranrepl
Where articleName...
April 29, 2008 at 1:15 pm
err that means that the snapshot isn't completed yet and that you should wait until it is done.
also if you are using 'For Replication Only' or whatever mode, snapshot won't...
April 28, 2008 at 6:28 pm
are you using snapshot with your transactional replication?
April 28, 2008 at 10:48 am
How many commands are sitting in the queue?
waiting for the server to response means that the distribution agent is reading the cmd table and preparing those to be replicated. ...
April 28, 2008 at 10:46 am
I had that table with varchar(20) on both servers. I also had other tables, one of them is named 'attribute'.
when I originally scripted it out, every table had it...
April 25, 2008 at 7:43 pm
Viewing 15 posts - 61 through 75 (of 121 total)