做一个个人网站,贵州省建设厅的网站,wordpress前端投稿上传图片,服装品牌网站建设从生产上面备份出来了一个数据库#xff0c;应用在使用时显示ORA-25153临时表空间为空的报错#xff0c;原因一般是数据库迁移时#xff0c;没有迁移完整造成的
解决方法 1.创建新的临时表空间temp2
create temporary tablespace temp2 tempfile DATA size 100M autoexten…
从生产上面备份出来了一个数据库应用在使用时显示ORA-25153临时表空间为空的报错原因一般是数据库迁移时没有迁移完整造成的
解决方法 1.创建新的临时表空间temp2
create temporary tablespace temp2 tempfile DATA size 100M autoextend on;2.设置新的临时表空间temp2为默认临时表空间
alter database default temporary tablespace temp2;3.删除原有不可用的临时表空间
drop tablespace temp including contents and datafiles cascade constraints;4.重新创建新的默认表空间TMEP
create temporary tablespace TEMP tempfile DATA SIZE 50M AUTOEXTEND ON;5.重新设置默认表空间为TMEP
alter database default temporary tablespace temp;6.删除第一次创建的不用的临时表空间temp2
drop tablespace temp2 including contents and datafiles cascade constraints;