使用dump文件
导出
-- export
exp user@ip/service_name file=xxx.dmp full=y
导入
- 创建表空间
- 创建用户
- 数据导入
创建表空间
create tablespace tablespace_name
datafile datefile_name
size 2000M;
创建用户
create user user_name
identified by password
default tablespace tablespace_name;
grant role to user_name
数据导入
imp user/password@ip/service_name file=local_file full=y;
过程中遇到的问题
问题:EXP-00091: Exporting questionable statistics.
方案:配置本地环境变量NLS_LANG
操作:
- 数据库。查询当前数据库使用的语言
select userenv('language') from dual;
- 配置本地环境变量
export NLS_LANG=ENGLISH_CHINA.ZHS32GB18030
网友评论