I did this...ALTER TABLE tm_spn_equip_def ADD Customer_No int NOT NULL DEFAULT dbo.f_spn_GetCustomerNo() WITH VALUES
Now when I attempt to do this...ALTER TABLE tm_spn_equip_def DROP COLUMN Customer_No
I get an error:Msg 5074, Level 16, State 1, Line 1The object 'DF__tm_spn_eq__Custo__019E3B86' is dependent on column 'Customer_No'.Msg 4922, Level 16, State 9, Line 1ALTER TABLE DROP COLUMN Customer_No failed because one or more objects access this column.How can I get around this?TIA!