when building a merge replication a column was added to all of my tables. I need to remove this column. I have run the following in querry anaalyzer
alter table tablename
drop column rowguid
I get the following error
Server: Msg 5074, Level 16, State 1, Line 1
The object 'DF__FAHead__rowgui__2DB1C7EE' is dependent on column 'rowguid'.
Server: Msg 5074, Level 16, State 1, Line 1
The index 'index_165575628' is dependent on column 'rowguid'.
Server: Msg 4922, Level 16, State 1, Line 1
ALTER TABLE DROP COLUMN rowguid failed because one or more objects access this column.
This column must be remover ASAP. I have tried to remove it by right clicking and selecting delete but delete is not available.
How do I delete this column?
alter table tablename
drop column rowguid
I get the following error
Server: Msg 5074, Level 16, State 1, Line 1
The object 'DF__FAHead__rowgui__2DB1C7EE' is dependent on column 'rowguid'.
Server: Msg 5074, Level 16, State 1, Line 1
The index 'index_165575628' is dependent on column 'rowguid'.
Server: Msg 4922, Level 16, State 1, Line 1
ALTER TABLE DROP COLUMN rowguid failed because one or more objects access this column.
This column must be remover ASAP. I have tried to remove it by right clicking and selecting delete but delete is not available.
How do I delete this column?