> Thank you but I have tried that same result.
>
[quoted text clipped - 11 lines]
> > > Many thanks
> > > David
This is the error, there are up to 42 of these in total...
Msg 208, Level 16, State 1, Procedure sp_MSrepl_droparticle, Line 793
Invalid object name 'MSpub_identity_range'.
Msg 266, Level 16, State 2, Procedure sp_MSrepl_droparticle, Line 793
Transaction count after EXECUTE indicates that a COMMIT or ROLLBACK
TRANSACTION statement is missing. Previous count = 0, current count = 1.
...I can confirm that some, if not all, of the system tables that
replication creates have been deleted. I am not concerned if the publication
database needs to be dropped.
Thanks again.
> Can you tell us the exact error you are getting in deleting that
> publication...
[quoted text clipped - 15 lines]
> > > > Many thanks
> > > > David
Sachin - 30 Mar 2006 19:00 GMT
David
you can also try this option.
use master
go
update sysdatabases
set category = 0
where name = <your publication you want to drop>
make sure the option to make adhoc changes to system tables in turned on.
> This is the error, there are up to 42 of these in total...
>
[quoted text clipped - 29 lines]
> > > > > Many thanks
> > > > > David
Sachin - 30 Mar 2006 19:05 GMT
David,
you can also try this option
use master
go
update sysdatabases
set category = 0
where name = <the publisher db you want to drop>
make sure you set the allow modifications to be made directly to the system
catalogs option turned on.
hope this helps.
> This is the error, there are up to 42 of these in total...
>
[quoted text clipped - 29 lines]
> > > > > Many thanks
> > > > > David
D Johnson - 31 Mar 2006 12:15 GMT
Thanks but I thought that updates to the system catalogues under SQL Server
2005 were prohibited.
> David,
> you can also try this option
[quoted text clipped - 41 lines]
> > > > > > Many thanks
> > > > > > David
Sachin - 31 Mar 2006 16:25 GMT
I didn't know you had SQL 2005. But you can still do it using the DAC.
sqlcmd -S<sql2005servername> -E<trustedConnection> or you can use -U , -P ,
-A (to open the DAC)
you can enable the option to enable system catalogs using the sp_configure
option.
> Thanks but I thought that updates to the system catalogues under SQL Server
> 2005 were prohibited.
[quoted text clipped - 44 lines]
> > > > > > > Many thanks
> > > > > > > David