${mangUserName}:管理员用户
${mangPassword}:管理员密码
${userName}:用户名,与管理员用户可以相同
${filePath}:文件路径,建议以.dmp结尾
exp ${mangUserName}/${mangPassword} full=y; #参数full表示整库导出。导出后会在当前目录下生成一个EXPDAT.DMP的文件,此文件为备份文件。
如果想导出数据到指定位置,并且取个名字,需要添加file参数。例如:
exp system/123456 file= C:\person.dmp full=y;
imp ${mangUserName}/${mangPassword} full=y file=${filePath}
exp ${mangUserName}/${mangPassword} owner=${userName} file=${filePath}
imp ${mangUserName}/${mangPassword} file=${filePath} fromuser=${oriUserName} [ignore=y]
exp ${mangUserName}/${mangPassword} file=${filePath} tables={tb1,tb2,...}
imp ${mangUserName}/${mangPassword} file =${filePath} tables={tb1,tb2,...}
使用下面命令获得编码数字
cat ${fileName}|od -x|head -1|awk ‘{print $2 $3}‘|cut -c 3-6
如编码数字为0345,sqlplus连接数据库查看编码
select nls_charset_name(to_number(‘0345‘,‘xxxx‘)) from dual;
原文:https://www.cnblogs.com/forest-xs/p/13493762.html