Use this hopefully Number 1 would help if not use other;
--1
EXEC sp_removedbreplication 'UVMS2'
--2-Execute the following procedure on the problematic database and pass the table name as the parameter:
EXEC sp_msunmarkreplinfo 'Dealersetup'
--3 You may not need this method, but take this as a last resort.
EXEC sp_configure 'allow',1
go
reconfigure with override
go
use your_database_name
go
update sysobjects set replinfo = 0 where name = 'your_table_name'
go
EXEC sp_configure 'allow',0
go
reconfigure with override
go