解决oracle导入未分配表空间的问题

select 'alter table ' || t.TABLE_NAME || ' allocate extent;'
from user_tables t order by t.TABLE_NAME;

 执行生成的语句。

原文地址:https://www.cnblogs.com/boazy/p/7561107.html