ora-01440解决方案


备份:
create table productinfo_bak as select * from productinfo;
删除productinfo表内的数据:
delete  from productinfo;
修改表结构:
alter table productinfo modify productif number(10,2);
还原表数据:
insert into productinfo select * from productinfo_bak;

参考博客:https://blog.csdn.net/zhou452840622/article/details/51840667


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM