Lets start with the cryptic error:
The object 'DF__product_t___76630419' is dependent on column 'prod_file_for_download'.
My SQL statement was simply
Perhaps I have the syntax wrong. What's the SQL syntax to delete a column (not just data but the entire column) within a table? DB = MS SQL Server 2k. Further, there have been zero INSERTions on this table since I ALTERed it ADDing the column 'prod_file_for_download'. So the column doesn't even have any data in it!!
The object 'DF__product_t___76630419' is dependent on column 'prod_file_for_download'.
My SQL statement was simply
Code:
ALTER TABLE product_tmp DROP COLUMN prod_file_for_download
Perhaps I have the syntax wrong. What's the SQL syntax to delete a column (not just data but the entire column) within a table? DB = MS SQL Server 2k. Further, there have been zero INSERTions on this table since I ALTERed it ADDing the column 'prod_file_for_download'. So the column doesn't even have any data in it!!