Please be aware that alter table drop column is not supported in version before 12 of ASE! You are going to have problems if you use alter table drop column pre v 12!
The safest bet is to rename the current table to <table>_prev. Create a new table in the image of old table without the affected column. Do insert select from the prev table to the new table. Then build primary key, indexes, triggers etc.
good luck