oracle exp导出加上过滤条件

Posted 博客园站长

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle exp导出加上过滤条件相关的知识,希望对你有一定的参考价值。

exp username/[email protected]   file=‘d:\hehe.dmp‘ tables=(%) query="""where UPDATE_DTIME >= to_date(‘2017-01-01‘,‘yyyy-mm-dd‘)"""

 

 

 

create user DB_USER_NAME identified by DB_USER_PWD
default tablespace ETL;
grant connect,resource to DB_USER_NAME;
grant create any sequence to DB_USER_NAME;
grant create any table to DB_USER_NAME;
grant delete any table to DB_USER_NAME;
grant insert any table to DB_USER_NAME;
grant select any table to DB_USER_NAME;
grant unlimited tablespace to DB_USER_NAME;
grant execute any procedure to DB_USER_NAME;
grant update any table to DB_USER_NAME;
grant create any view to DB_USER_NAME;
grant DBA to DB_USER_NAME;

//表空间
create tablespace XXX
datafile ‘D:/app/DEMOSPACE_TBSPACE.dbf‘
size 1500M
autoextend on next 5M maxsize 2000M;

以上是关于oracle exp导出加上过滤条件的主要内容,如果未能解决你的问题,请参考以下文章

oracle 11G 用exp 怎么样并发导出70G数据

oracle exp不能导出空表,怎样才能导出空表的结构呢?imp怎么导入空表结构?

如何在Oracle中使用exp和imp导出,导入dmp数据库文件

linux下怎么用exp和imp导出和导入指定的oracle数据库表?

oracle中 使用exp命令导出数据导出终止失败

安装oracle时 哪个选项包含exp和imp命令