【性能调整】11g导出导入的几个问题

1,
Error:   ORA-39059  (ORA-39059)
Text:   dump file set is incomplete
---------------------------------------------------------------------------
Cause: An IMPORT or SQL_FILE operation was being performed but not all
 of the files from the EXPORT dump file set were included.
Action: Check the export log file and make sure all of the files that
 were exported are included in the current job.
expdp出多个文件(不管是否并行),那么最好使用impdp导入所有的文件,因为很可能单个文件不能包含某个表的全部数据
2,
报错只有ORA-31693和ORA-29913组合出现
如果是由于使用并行参数导致的,那么注意:
导出的时候用parallel,然后导入的时候也用parallel
3,
使用并行导出单个大表到单个文件,并不能比不使用并行有多少的提升,不过导出到多个文件,且文件数量和并行度设置的适宜则大大提高速度,
并行度根据系统cpu数量和当前负载来决定,一般为cpu个数70%

 

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/16179598/viewspace-743799/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/16179598/viewspace-743799/

### 如何在麒麟操作系统安装配置 Docker #### 准备工作 确保系统已更新至最新状态并具备必要的依赖项。对于麒麟操作系统而言,建议先执行系统的全面升级。 ```bash sudo apt update && sudo apt upgrade -y ``` #### 获取 Docker 安装包 考虑到网络环境差异,在线获取可能遇到困难;因此推荐采用官方文档或其他可靠渠道下载适用于麒麟操作系统Docker版本[^1]。 #### 执行具体安装过程 完成上述准备工作之后,按照如下指令序列来实现Docker安装: - 添加Docker APT仓库密钥: ```bash curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg ``` - 设置稳定版存储库: ```bash echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null ``` - 更新APT索引文件,并准备开始安装Docker Engine: ```bash sudo apt-get update sudo apt-get install docker-ce docker-ce-cli containerd.io ``` 以上命令会从指定源处下载并安装Docker及其关联组件[^2]。 #### 初始化与验证服务运行状况 为了使Docker能够随系统启动而自动激活,需执行以下命令以加载服务单元定义、开启Docker守护进程以及确认其当前活动状态正常: ```bash sudo systemctl daemon-reload sudo systemctl start docker sudo systemctl enable docker sudo systemctl status docker ``` 此时应该可以看到有关`docker.service`的状态报告,表明该服务正在活跃运行中[^3]。 #### 测试安装成果 最后一步是测试新安装的服务是否可以正常使用。可以通过拉取一个简单的镜像来进行这项检验: ```bash sudo docker run hello-world ``` 这条命令将会尝试从互联网抓取名为`hello-world`的小型测试镜像,并展示一条消息证明一切运作良好[^4]。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值