docker 进行orcale 查看这篇文章
https://editor.csdn.net/md/?articleId=131026846
1、进入orcale
1、进入orcale容器
docker exec -it oracle11g bash
2、orcale连接sysdba用户
- 进入root
su root
密码:helowin
- 切换到oracle用户
su oracle
- 使用sqlplus登录test用户
sqlplus /nolog
conn test/test
- 导出数据,tables表示test用户下的表,tables去掉表示就是所有表
exp test/test@helowin tables=students file=files.dmp
这图表示导出成功
- 导入数据,删除students表,full是必须的,ignore表示已有的表忽略
imp test/test@helowin file=files.dmp full=y ignore=y
说明:数据库可能字符有些不同
查看字符编码
select * from v$nls_parameters where parameter='NLS_CHARACTERSET';
查看dmp有那些表,表示导入成功了
strings files.dmp | grep "CREATE TABLE"|awk '{print $3}'|sed 's/"//g'
如果要保证字符集,可以指定导出的字符集
export NLS_LANG=AL32UTF8
查看环境变量
printenv