Home > Database > Mysql Tutorial > body text

oracle导数据总结

WBOY
Release: 2016-06-07 15:07:34
Original
1013 people have browsed it

欢迎进入Oracle社区论坛,与200万技术人员互动交流 >>进入 oracle导数据总结 关于数据库的导出做个总结方便以后查找 导出自己的表 exp userid=用户名/密码@数据库实例名 tables=(表1,表2…) file=备份路径 比如 导出 scott.emp 表 exp userid=scott/m123@o

欢迎进入Oracle社区论坛,与200万技术人员互动交流 >>进入

    oracle导数据总结

    关于数据库的导出做个总结方便以后查找

    导出自己的表

    exp userid=用户名/密码@数据库实例名 tables=(表1,表2…) file=备份路径

    比如 导出 scott.emp 表

    exp userid=scott/m123@oracl tables=(emp.dept) file=d:/emp.dmp

    必须在dos 下执行

    到别人方案下的表

    exp userid=用户名/密码@数据库实例名 tables=(方案名。表1,方案名。表2…) file=备份路径

    导出表的结构

    exp userid=用户名/密码@数据库实例名 tables=(表1,表2…) file=备份路径 rows=n

    直接导出表(主要目的是提高速度)

    exp userid=用户名/密码@数据库实例名 tables=(表1,表2…) file=备份路径 direct=y

    导出方案

    exp userid=用户名/密码@数据库实例名 owner=用户名 file=备份路径

oracle导数据总结

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template