本文主要是介绍oracle exp导出 少表,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
导出语句:
exp NC65/nc65@YONYOUDB file=d:\ysdb20191028.dmp log=d:\ncdatabak20191028.log full=Y
导出发现少了很多表,一直找不到原因。看这个https://blog.csdn.net/shiyu1157758655/article/details/83409436
应该是oracle 11g 的特性,没有给空表分配内存空间。 user_tables 中少的表参数为NO segment_created='NO'
select segment_created from user_tables where segment_created='NO'
用以下语句生成批量修改的语句
select 'alter table ' ||table_name ||' allocate extent;' from user_tables where segment_created='NO';
这篇关于oracle exp导出 少表的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!