oracle导入imp导出exp命令的简单使用
1、登录:
原始:
用户名:sys
密 码:安装oracle设置的口令
数据库:ip:port/数据库名(默认是orcl)
连接为:SYSDBA
用户:
用户名:safe_csmp
密 码:safe_csmp
数据库:172.16.2.190/sunnyit
连接为:Normal
2、创建用户:
默认表空间填USERS,临时表空间填TEMP;
角色权限:dba,可授予,默认
系统权限:unlimited tablespace,可授予
3、cmd进入ORACEL:
C:\Users\Administrator.USER-20140920GL>sqlplus /nolog
SQL*Plus: Release 11.2.0.1.0 Production on 星期三 12月 3 11:39:20 2014
Copyright (c) 1982, 2010, Oracle. All rights reserved.
SQL> connect safe_csmp/safe_csmp@172.16.2.190/sunnyit
已连接。
SQL> show parameter deferred_segment_creation;//查看数据库表"段延迟创建",默认是true,表示创建表示不分配段(segment),只有插入数据时才分配,故空表倒不出来。
SQL> alter system set deferred_segment_creation=false; //修改数据库段延迟为false,表示创建表的时候就分配段(segment),该值设置后只对后面新增的表产生作用,对之前建立的空表不起作用。意并且要重新启动数据库,让参数生效 。
4、导出所有表及数据:
cmd 下直接 exp:
exp safe_csmp/safe_csmp@172.16.2.190:1521/sunnyit file=f:/f.dmp grants=y
说明:把anjianju用户的所有表导出到文件f:/f.dmp
exp safe_csmp/safe_csmp@172.16.2.190:1521/sunnyit file=D:/all.dmp grants=y tables=(SYS_USER,COMM_BLACKLIST)
说明:把safe_csmp用户里两个表SYS_USER,COMM_BLACKLIST导出到文件D:/all.dmp
5、导入表及数据
cmd 下直接 imp:
imp safe_csmp/safe_csmp file =f:/f.dmp full=y ignore=y
6、如果没有导出空表:
1.查看空表(sql下):select 'alter table '||table_name||' allocate extent;' from user_tables where num_rows=0;
2.把查询结果依次执行以下(sql下);
3.再去执行 exp(cmd);
oracle导入imp导出exp命令的简单使用的更多相关文章
- Oracle用imp和exp实现数据的导入和导出
使用方法如下: Imp username/password@connect_string param=value - exp username/password@connect_string para ...
- ORACLE导入、导出命令使用方法
oracle导入.导出命令使用方法: 给用户增加导入数据权限的操作 第一,启动sql*puls 第二,以system/manager登陆 第三,create user 用户名 IDENTIFIED B ...
- Oracle数据库备份/导出(exp/expd)、导入(imp/impd)
常用的oracle数据库备份(导入/导出)有两种,分别是exp/imp和expd/impd,前者是Orace早期版本带有的导入导出工具,后者是Oracle10g后出现的,下面进行分别介绍! 1.e ...
- Oracle导入(imp )与导出(exp )
导出exp username/password@orcl file=db.dmp 导入imp username/password@orcl file=h:\db.dmp full=y 备注:在导入之 ...
- oracle 导入imp 命令
最常用的 imp name/password@IP:1521/orcl[库] file="c:\123.dmp" full=y ignore=y. 例:imp abc/ ...
- imp、exp命令导出优化
本文对Oracle数据的导入导出 imp ,exp 两个命令进行了介绍, 并对其对应的參数进行了说明,然后通过一些演示样例进行演练,加深理解.文章最后对运用这两个命令可能出现的问题(如权限不够,不同o ...
- Oracle 导入、导出DMP(备份)文件
首先说明dmp文件: Oracle备份文件是以dmp结尾,这种文件是oracle的逻辑备份文件,常用于数据库逻辑备份,数据库迁移等操作. 一.Oracle导入备份文件步骤:我用的是Oracle 11g ...
- ORACLE导入、导出所有数据到文件的SQL语句
打开cmd窗口,执行如下SQL语句即可 --导出 exp 用户名/密码@localhost/orcl file=d:\111.dump log=d:111.log --或者 1.登录管理员system ...
- oracle导入和导出和授权
导入数据库: imp demo@orcl file=d:/bak_1023.dmp full=y ignore=y 导出数据库: @orcl file=d:/bak_1023.dmpexp yhtj/ ...
随机推荐
- mysql 连接超时解决
修改my.cnf文件即可. ************************************ 在/etc/my.cnf下添加如下两行代码: wait_timeout=31536000inter ...
- Java 文件和byte数组转换
/** * 获得指定文件的byte数组 */ private byte[] getBytes(String filePath){ byte[] buffer = null; try { File fi ...
- xml学习
一,数据类型 xmlChar 对char的基本代替,是一个UTF-8编码字符串中的一个字节.如果你的数据使用了其他编码,在使用libxml函数前就必须转换为UTF-8. xmlDoc和xmlDocP ...
- js 图片处理 Jcrop.js API
引入jquery.Jcrop.min.css和jquery.Jcrop.min.js 参数/接口说明 options 参数说明 名称 默认值 说明 allowSelect true 允许新选框 all ...
- IE6下div层被select控件遮住的问题解决方法
Select在IE6下是处于最顶层的,因此想要遮住它,设置zIndex属性是不行的,就需要一个优先级更高的元素,就是iframe,当把iframe嵌套在弹出div层中后,把iframe设置为不可见,但 ...
- [CareerCup] 18.3 Randomly Generate Integers 随机生成数字
18.3 Write a method to randomly generate a set of m integers from an array of size n. Each element m ...
- Python 基础 - 随机列表最大的两个值
# -*- coding: utf-8 -*- #author:v def sywmemeda(l): #list 冒泡排序 length = len(l) for i in range(length ...
- # 20145334赵文豪 《Java程序设计》第7周学习总结
20145334赵文豪 <Java程序设计>第7周学习总结 教材学习内容总结 第十三章 时间与日期 13.1.1时间的度量 1.格林威治时间(GMT):参考太阳到达最高点,有时间误差. 2 ...
- LaTex 插入图片
\usepackage{mathrsfs} \usepackage{amsmath} \usepackage{graphicx} 宏包 \includegraphics{graph01.eps} %插 ...
- JS控制打印指定div
<html><head><script language="javascript">function printdiv(printpage){v ...