Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
KnooKie
Aged Yak Warrior
623 Posts |
Posted - 2001-11-21 : 05:01:24
|
| I have used the following commands to remove my table from being stuck in a publication. sql_tos being my DB and broker_employee being the table.What does it mean though when in the BIT i've highlighted below the replinfo is equal to 3 ?? I was under the impression that it should be a 0 or 1. Just curious really. It worked anyway. thanks Paul.sp_helparticle sql_tos, broker_employeeselect object_id ('broker_employee')select * from sysarticleswhere objid = 1538820544select category from sysobjectswhere name = 'broker_employee'select replinfo from sysobjects -- THIS BITwhere name = 'broker_employee'sp_configure allow, 1reconfigure with overridebegin tranupdate sysobjectsset replinfo = 0where name = 'broker_employee'commit transp_configure allow, 0reconfigure with override |
|
|
|
|
|