Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ALTER COLUMN error is keeping me from finishing this program

Status
Not open for further replies.

majorbroncosfan

Programmer
Joined
Feb 23, 2001
Messages
121
Location
US
When I try to alter a column for one of my tables, I get the following error:

"ALTER TABLE ALTER COLUMN HoursMTD failed because one or more objects access this column. The object 'DF_tblPerson_Hours_3FA063D3' is dependent on column 'HoursMTD'"

I am trying to alter the HoursMTD column from a numeric data type to a varchar in order to use signed equivalents for importing into a COBOL database.
 
You will first need to drop the default constraint
'DF_tblPerson_Hours_3FA063D3' which is set to this column before you can alter the column.

Rick.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top