出现下图错误
原因就是没有临时表空间,所以要建立临时表空间,下面的语句,记得把地址换成你自己想放的地方。
alter tablespace temp add tempfile 'C:/temp.dbf' size 100M autoextend on next 10M;
alter tablespace temp add tempfile 'C:/temp.dbf' size 100M autoextend on next 10M;
转载于:https://www.cnblogs.com/tsruixi/p/10846689.html