Oracle数据的导出与导入
前序:关于Oracle9i数据的导出与导入问题,折腾我好长时间了,尤其是导入。今天在一位同事的指导下,算是终于成功了,为了记住这位同事的帮助,在此仅以“坤”作为记号。
正文:
Oracle数据导出:
如果是导出本机的Oracle数据库:
exp pcisv62/11@ORCL file="d:\pcisv62081226.dmp" full=y
(ORCL为本地数据库监听)
如果是导出服务器端的Oracle数据:
exp teller/tccb@orcl file="d:\DMP\teller.dmp" full=y
(tnsname为COREV6_DBSERVER,SID为COREV6,主机为DBSERVER。)
注意:必须是 DBA 才能执行完整数据库或表空间导出操作。
Oracle数据导入,分以下步骤:
1.先在Oracle9i的Enterprise Manager Console下,以sys/sys及sysdba身份登陆,在“存储”-->“表空间”下创建表空间COREV6,同时给其分配合适的空间。
2.在“安全性”-->“用户”下创建用户pcisv62,使用户默认的表空间为COREV6,同时在“角”里授予CONNECT、DBA、EXP_FULL_DATABASE、IMP_FULL_DATABASE、RESOURCE。
3.导入.dmp文件,开始-->运行cmd,导入命令:
imp pcisv62/11@ORCL file="d:\pcisv62081226.dmp" ignore=y
注意:如果备份的.dmp文件是以用户pcisv62导出COREV6空间的数据,那么
1.新建的用户最好是pcisv62,否则命令为:
imp pcisv62/11@ORCL file="pcisv62081226.dmp" fromuser=pcisv62 touser=新建用户 ignore=y
2.与新建用户关联的新建空间名必须为COREV6,否则Oracle报不到COREV6空间的错误。
imp teller/tccb@orcl file="d:\DMP\teller.dmp" fromuser=teller touser=teller ignore=y
imp TELLDEV/tccb@orcl file="D:\ORACLE\telldev33_1.dmp" fromuser=TELLDEV touser=TELLDEV ignore=y
imp TELLDEVsec/tccb@orcl file="D:\ORACLE\telldev33_1.dmp" fromuser=TELLDEVsec touser=TELLDEVsec ignore=y
imp teller/tccb@orcl file="d:\DMP\teller.dmp" fromuser=teller touser=teller ignore=y
imp updater/tccb@orcl file="d:\DMP\updater.dmp" fromuser=updater touser=updater ignore=y
imp updater/tccb@orcl file="d:\DMP\updater.dmp" fromuser=updater touser=updater ignore=y
数据成功导入以后,下一步就是配置Tomcat的l文件:
1.如果用到的是本机上的数据,本地数据源里的部分配置为: username="pcisv62" password="11"
url="jdbc:oracle:thin:@localhost:1521:orcl"
2.如果用到的是服务器上的数据,则数据源里的部分配置为: username="pcisv62" password="11"
url="jdbc:oracle:thin:@dbserver:1521:corev6"(dbserver为服务器的名字,corev6为服务器上Oracle的
SID)
oracle的安装目录E:\oracle\ora92\network\admin下的a:
本地配置:
ORCL =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = 主机名)(PORT = 1521))
)
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = ORCL)
)
)
或服务器配置:
COREV6_DB
SERVER =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = dbserver)(PORT = 1521))
)
(CONNECT_DATA =
(SID = COREV6)
(SERVER = DEDICATED)
)
)
exp telldevsec/tccb@telldev33 file=d:\telldevsec20101228.dmp owner=(telldevsec)
exp telldevsec/tccb@telldev33 file=d:\telldevsec20101228.dmp grants=y full=n
exp system/manager@TEST file=d:\daochu.dmp full=y
以下转载:几种导入导出的命令方法,以备以后查阅。
数据导出:
exp qhmis/qhmis@qhmis file='d:\backup\qhmis\qhmis20060526.dmp' grants=y full=n
1 将数据库TEST完全导出,用户名system 密码manager 导出到D:\daochu.dmp中
exp system/manager@TEST file=d:\daochu.dmp full=y
2 将数据库中system用户与sys用户的表导出
exp system/manager@TEST file=d:\daochu.dmp owner=(system,sys)
3 将数据库中的表table1 、table2导出
exp system/manager@TEST file=d:\daochu.dmp tables=(table1,table2)
4 将数据库中的表table1中的字段filed1以"00"打头的数据导出
exp system/manager@TEST file=d:\daochu.dmp tables=(table1) query=\" where filed1 like '00%'\"
数据的导入:
1 将D:\daochu.dmp 中的数据导入 TEST数据库中。
imp system/manager@TEST file=d:\daochu.dmp
上面可能有点问题,因为有的表已经存在,然后它就报错,对该表就不进行导入。
在后面加上 ignore=y 就可以了。
2 将d:\daochu.dmp中的表table1 导入
imp system/manager@TEST file=d:\daochu.dmp tables=(table1)
exp TELLDEVSEC/tccb@telldev33 file=d:\temp\TELLDEVSEC.dmp owner=(TELLDEVSEC);
exp TELLDEV/tccb@telldev33 file=d:\temp\TELLDEV.dmp owner=(TELLDEV);
exp UPDATDEVSEC/tccb@telldev33 file=d:\temp\UPDATDEVSEC.dmp owner=(UPDATDEVSEC);
exp DEVELOPEDEVSEC/tccb@telldev33 file=d:\temp\DEVELOPEDEVSEC.dmp owner=(DEVELOPEDEVSEC);
imp MonitDevSec/tccb@orcl file=D:\ORACLE\monitdev33.dmp ignore=y full=y;
imp TELLDEVSEC/tccb@orcl file=d:\temp\TELLDEVSEC_1.dmp ignore=y full=y;
imp TELLDEV/tccb@orcl file=d:\temp\TELLDEV.dmp ignore=y full=y;
imp UPDATDEVSEC/tccb@orcl file=d:\temp\UPDATDEVSEC.dmp ignore=y full=y;
imp DEVELOPEDEVSEC/tccb@orcl file=d:\temp\DEVELOPEDEVSEC.dmp ignore=y full=y;
IP地址:14.1.79.81,服务实例:tell81,表空间:DATA01,用户名:telldev,密码:tccb
drop tablespace DEVELOPEDEVSEC including contents
drop tablespace DEVELOPEDEVSEC including contents cascade constraints
CREATE TABLESPACE "DEVELOPEDEVSEC2"
LOGGING oracle选择数据库
DATAFILE 'D:\ORACLE\ORADATA\a' SIZE 512M
EXTENT MANAGEMENT LOCAL
select segment_name,partition_name,tablespace_name from dba_extents where tablespace_name=upper('DEVELOPEDEVSEC')
select 'alter table '||owner||'.'||table_name||' drop constraint '||constraint_name||' ;'
from dba_constraints
where constraint_type in ('U', 'P')
and (index_owner, index_name) in
(select own
er, segment_name
from dba_segments
where tablespace_name = 'DEVELOPEDEVSEC');
alter table TELLDEVSEC.C001_TPRINTTEMPLATE drop constraint PK_TPRINTTEMPLATE ;
alter table TELLDEVSEC.C001_TREMOTEAUTHORIZE drop constraint REMOTEAUTHORIZE_PK
;
alter table TELLDEVSEC.C001_TJNB_USERDATA drop constraint USERDATA_PK ;
alter table TELLDEVSEC.C001_TUSERINFORMATION drop constraint USERINFORMATION_PK
;
alter table TELLDEVSEC.SHARE_TMULTBIZFUNCTIONTABLE drop constraint PK_SHARE_TMUL
TBIZFUNCTIONTABLE ;
'ALTERTABLE'||OWNER||'.'||TABLE_NAME||'DROPCONSTRAINT'||CONSTRAINT_NAME||';'
--------------------------------------------------------------------------------
alter table TELLDEVSEC.C001_TMULTIPLEBIZMENUINFO drop constraint PK_TMULTIPLEBIZ
MENUINFO ;
已选择6行。
CREATE TABLESPACE "DEVELOPEDEVSEC"
LOGGING
DATAFILE 'D:\ORACLE\PRODUCT\10.2.0\ORADATA\a' SIZE 512M
EXTENT MANAGEMENT LOCAL;
alter database datafile '/oradata/tell81/sysaux01.dbf' resize 1000M;
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论