Quote:
Originally posted by Norman
As far as I know we are using 8.1.7.0.1
So is there ANY other way to get rid of this column?
|
Well, you could just change the COMPATBLE parameter to 8.1.7.0.1 and then it will work.
If that isn't permitted, then you would have to do it the hard way:
CREATE TABLE new_tracking AS SELECT ... FROM tracking;
DROP TABLE tracking;
RENAME new_tracking TO tracking;
(Then add back missing indexes, constraints, triggers, ...)