本文主要是介绍ORA-25153:临时表空间为空,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
SQL>sqlplus / as sysdba
SQL>desc v$tempfile;
临时表空间记录文件
SQL>select name from v$tempfile;
重新创建临时表空间代替之前的表空间:
SQL>create tempormary tablespace temp1 tempfile 'c:\orcl\temp1.dbf' size 100M;
将新建的表空间设置为数据库的默认表空间:
SQL>alter database default temporary tablespace temp1;
验证查看临时表空间:
SQL>select tablespac_name,contents from dba_tablespaces;
删除之前的临时表空间:
SQL>drop tablespace temp_name including contents and datafiles;
给用户指定默认表空间:
SQL>alter user scott temporary tablespace temp1;
这篇关于ORA-25153:临时表空间为空的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!