首页 > 数据库技术 > 详细

Oracle配置说明

时间:2018-12-23 23:11:02      阅读:187      评论:0      收藏:0      [点我收藏+]

当Oracle安装完成后,为后续能够顺利得导出空表,特做一下配置(重点关注2.1)

1.1.查询空表
select table_name from user_tables where NUM_ROWS=0;

设置指定的表支持空表导出
alter table table1 allocate extend;


1.2.已有空表添加exp导出支持
select ‘alter table ‘||table_name||‘ allocate extent;‘ from user_tables where num_rows=0;


2.1.新表自动支持exp导出
sqlplus:

show parameter deferred_segment_creation

alter system set deferred_segment_creation=false;

 

Oracle配置说明

原文:https://www.cnblogs.com/oumi/p/10165814.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!