文档解释
ORA-54027: cannot modify data-type of virtual column
Cause: Attempted to change the data-type of virtual column without modifying the underlying expression
Action: change the underlying expression to be compatible with the data-type change
ORA-54027:不能修改虚拟列的数据类型,也就是不能通过ALTER TABLE语句的CHANGE或MODIFY子句修改虚拟列的数据类型。
官方解释
常见案例
一般处理方法及步骤
1. 从数据库中删除虚拟列(字段);
2. 使用ALTER TABLE语句修改字段类型;
3. 重新向表中添加虚拟列;
4. 重建虚拟列的缓存,以使系统能够正确处理虚拟列的最新数据类型。