Viewing 15 posts - 46 through 60 (of 5,102 total)
This was definitely a "new" distribution database setup.
May 4, 2010 at 1:20 pm
eric.winters (4/30/2010)
I've been successfully snapshot replicating tables from Oracle 11g to SQL2005 for some time. Recently the need came up and we are trying...
May 4, 2010 at 1:18 pm
Recursion of stored procedures is always a bad Idea.
You should use a CTE (or any other method you feel comfortable with) to determine which IDs you need deleted and then...
April 29, 2010 at 3:27 pm
josebrwn (4/29/2010)
The puzzling bit is that replication agents continue happily along, as though nothing were the matter. You have to look in the application event...
April 29, 2010 at 3:22 pm
🙂 Looks like the OP is not clarifying either ... oh well ...
April 29, 2010 at 3:18 pm
My only advice in that case would be to remove replication the "hard way" and start from scratch.
EXEC sp_removedbreplication 'dbname'
April 29, 2010 at 3:16 pm
Ronzo (4/29/2010)
There is no MaxCmdsInTran parameter documented for the...
April 29, 2010 at 1:52 pm
Your primary probably issued a *delete* and your row "was already not present" at the subscriber!
April 29, 2010 at 1:45 pm
Well I assumed you had "transactional replication" maybe you have "merge"; can you check sysmergearticles ?
April 29, 2010 at 1:42 pm
Looks like you have created indexed views for all your tables!!!!
To starters get rid of all "Create Unique CLUSTERED INDEX ...." for <tablename>_<view>
April 29, 2010 at 1:24 pm
If you run that query frequently you will be much better off using an indexed view.
April 29, 2010 at 1:17 pm
Lynn Pettis (4/29/2010)
Anyone seen the OP since this morning?
Forget it ... we know the answer is that it is probably in GB .... or who knows if it was actually...
April 29, 2010 at 12:58 pm
Yup front end is the way to go for these kind of things.
April 29, 2010 at 11:32 am
Did you look in dbo.sysarticles ?
1. Once you figure out which subscriber has it (if any) you do this:
EXEC dbo.sp_dropsubscription @publication = N' publication name',
...
April 29, 2010 at 11:30 am
Viewing 15 posts - 46 through 60 (of 5,102 total)