我創(chuàng)建了表空間之后,用delete from tablespace tablespace_name 刪除了,之后再創(chuàng)建表空間就出錯(cuò)了,請(qǐng)問(wèn)怎么解決
SQL> create temporary tablespace temp2_tablespace
? 2 ?tempfile 'temp2file.dbf' size 10m;
create temporary tablespace temp2_tablespace
*
第 1 行出現(xiàn)錯(cuò)誤:
ORA-03113: 通信通道的文件結(jié)束
2016-11-23
請(qǐng)用drop?tablespace tablespace_name來(lái)徹底刪除表空間,因?yàn)橛胐elete關(guān)鍵字只是刪除表空間中的數(shù)據(jù),并不能實(shí)現(xiàn)刪除整個(gè)表空間結(jié)構(gòu)。
2016-11-23
請(qǐng)用drop?tablespace tablespace_name來(lái)徹底刪除表空間,因?yàn)橛胐elete關(guān)鍵字只是刪除表空間中的數(shù)據(jù),并不能實(shí)現(xiàn)刪除整個(gè)表空間結(jié)構(gòu)。