• 【Oracle】将单表数据导入导出


    注意以下操作在dos窗口里进行,不是sqlplus。

    【单表导出】

    命令:

    exp luna/1234@orcl file=c:\temp\123.dump tables=(test05);

    其中luna是用户名,1234是密码,orcl是服务名,test05是表名

    执行情况:

    C:\WINDOWS\System32>exp luna/1234@orcl file=c:\temp\123.dump tables=(test05);
    
    Export: Release 11.2.0.1.0 - Production on 星期二 3月 8 15:34:35 2022
    
    Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
    
    
    连接到: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    已导出 ZHS16GBK 字符集和 AL16UTF16 NCHAR 字符集
    
    即将导出指定的表通过常规路径...
    . . 正在导出表                          TEST05导出了      568728 行
    EXP-00011: LUNA.; 不存在
    导出成功终止, 但出现警告。

    【数据导入】

    注意要把目标表test05先删除。

    命令:

    imp luna/1234@orcl file=c:\temp\123.dump full=y

    执行情况:

    C:\WINDOWS\System32>imp luna/1234@orcl file=c:\temp\123.dump full=y
    
    Import: Release 11.2.0.1.0 - Production on 星期二 3月 8 15:38:21 2022
    
    Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
    
    
    连接到: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    
    经由常规路径由 EXPORT:V11.02.00 创建的导出文件
    已经完成 ZHS16GBK 字符集和 AL16UTF16 NCHAR 字符集中的导入
    . 正在将 LUNA 的对象导入到 LUNA
    . 正在将 LUNA 的对象导入到 LUNA
    . . 正在导入表                        "TEST05"导入了      568728 行
    成功终止导入, 没有出现警告。

    END

  • 相关阅读:
    nginx socket转发设置
    Linux CentOS 7 安装字体库 & 中文字体
    nginx配置location总结及rewrite规则写法
    nginx动静分离小示例
    iptables黑/白名单设置(使用ipset 工具)
    Docker logs 命令
    Docker定制容器镜像(利用Dockerfile文件)
    docker swarn集群笔记
    [国家集训队]数颜色 / 维护队列(带修莫队)
    于是他错误的点名开始了(trie树)
  • 原文地址:https://www.cnblogs.com/heyang78/p/15980791.html
Copyright © 2020-2023  润新知