达梦导入导出几个例子 dexp 分区-凯发app官方网站

凯发app官方网站-凯发k8官网下载客户端中心 | | 凯发app官方网站-凯发k8官网下载客户端中心
  • 博客访问: 3502473
  • 博文数量: 718
  • 博客积分: 1860
  • 博客等级: 上尉
  • 技术积分: 7790
  • 用 户 组: 普通用户
  • 注册时间: 2008-04-07 08:51
个人简介

偶尔有空上来看看

文章分类

全部博文(718)

文章存档

2024年(4)

2023年(74)

2022年(134)

2021年(238)

2020年(115)

2019年(11)

2018年(9)

2017年(9)

2016年(17)

2015年(7)

2014年(4)

2013年(1)

2012年(11)

2011年(27)

2010年(35)

2009年(11)

2008年(11)

最近访客
相关博文
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·

分类: sqlite/嵌入式数据库

2023-03-12 16:29:56

几个常见例子

  1. -- 全库导出并压缩
  2. dexp sysdba/dameng123 file=fullbak.dmp full=y compress=y

  3. -- 全库导出 压缩 4个并行,排除用户u1、u2
  4. dexp sysdba/dameng123 file=ful_%u.dmp full=y compress=y parallel=4 exclude=schemas:u1,u2

  5. -- 导入到另外一个库中
  6. dimp sysdba/sysdba@localhost:5238 file=fullbak.dmp full=y


  7. --导出用户u4
  8. dexp sysdba/dameng123 file=u4.dmp schemas=u4

  9. --导入用户u4(如果用户不存在,要先创建)
  10. dimp sysdba/dameng123 file=u4.dmp schemas=u4

  11. --把用户u4导入到另外一个用户u3
  12. dimp sysdba/dameng123 file=u4.dmp remap_schema=u4:u3

  13. --导出用户u4 但排除表test1
  14. dexp sysdba/dameng123 file=u42.dmp schemas=u4 exclude=tables:test1

  15. --只导出用户u4 一个表test1
  16. dexp sysdba/dameng123 file=test1.dmp tables=u4.test1

  17. 导入表test1,如果存在则替换
  18. dimp u4/dameng1234 file=test1.dmp tables=test1 table_exists_action=replace

  19. --导出用户u4的test1表,且只导出id大于888 和小于999的
  20. dexp sysdba/dameng123 file=test_89.dmp tables=u4.test1 query='where id>888 and id<999'

  21. 导出分区表的p1分区
  22. dexp u4/dameng1234 file=part_t1_p1.dmp tables=part_t1:p1
跟oracle的exp 、imp差不多

阅读(473) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~
")); function link(t){ var href= $(t).attr('href'); href ="?url=" encodeuricomponent(location.href); $(t).attr('href',href); //setcookie("returnouturl", location.href, 60, "/"); }
网站地图