關於這次oracle資料遷移未新增NLS_LANG引數的記錄
遷移比較快,1個小時左右就完成了。
週五開發人員那邊沒有發現異樣,直到到12月12日星期一,開發人員反映有的表的comments存在亂碼的現象。
突然發現所有的表的comments都出現亂碼現象,離遷移完成已經過去3天,不能做回退,只能手動更改註釋,比對資料,這個過程比較痛苦,萬幸的是資料庫比較小,影響範圍比較小。
以後做匯出時可以參考一下下面的備份指令碼,export_full.sh
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
PATH=$PATH:$HOME/bin
export PATH
unset USERNAME
. ~/.bash_profile
export EXPLOG=/home/oracle/backup/fullexp.log
echo `date` "begin exp" >> $EXPLOG
mknod /db/backup/exp/export_pipe p
nohup /bin/gzip < /db/backup/exp/export_pipe > /db/backup/exp/expfull_`date +%Y%m%d`.dmp.gz &
exp userid=expname/passwd file=/db/backup/exp/export_pipe full=y statistics=none buffer=800000 >> $EXPLOG 2>> $EXPLOG
echo `date` "end exp" >> $EXPLOG
rm -rf /db/backup/exp/export_pipe
scp /db/backup/exp/expfull_`date +%Y%m%d`.dmp.gz
###################.bash_profile檔案內容
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
PATH=$PATH:$HOME/bin
ORACLE_BASE=/db/app/oracle
ORACLE_HOME=$ORACLE_BASE/product/10.2.0.3
ORACLE_SID=testdb
PATH=$ORACLE_HOME/bin:$PATH:$ORACLE_HOME/OPatch:/sbin
LD_LIBRARY_PATH=$ORACLE_HOME/lib:/usr/lib
export NLS_LANG=american_america.zhs16gbk #就是這個引數,在匯入匯出的時候一定要設定#
export LD_LIBRARY_PATH
export ORACLE_BASE
export ORACLE_HOME
export ORACLE_SID
export PATH
export PATH
unset USERNAME
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/21374452/viewspace-2130668/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Oracle遷移資料庫過程記錄Oracle資料庫
- 安全警示錄---記一次oracle資料檔案遷移過程Oracle
- 記一次資料遷移
- 關於禪道的資料遷移
- oracle實驗記錄 (oracle 關於instance引數設定)Oracle
- 關於nls_lang的設定,記得加引號。
- [Database Migration] 記一次未達預期的資料庫遷移Database資料庫
- 一次艱難的oracle資料遷移Oracle
- 關於Oracle資料庫中行遷移/行連結的問題Oracle資料庫
- 跪求關於〖執行緒遷移〗的相關資料!執行緒
- ORACLE 資料遷移Oracle
- 記錄一次XTTS遷移碰到的問題TTS
- 最近的一次ASM diskgroup線上遷移記錄ASM
- 資料泵引數partition_options 在對於遷移分割槽表的使用。
- 關於資料遷移的方法、步驟和心得
- expdp/impdp 使用version引數跨版本資料遷移
- ORACLE資料庫遷移Oracle資料庫
- 關於資料庫使用impdp+network_link遷移時,job的遷移資料庫
- WindowsServer 2012資料庫遷移記錄WindowsServer資料庫
- fastdfs資料遷移以及fastdfs問題排查記錄AST
- 記錄一個Oracle引數Oracle
- docker如何遷移資料目錄Docker
- 記錄一次餘額遷移的坑(測試角度)
- Oracle資料庫資料遷移流程Oracle資料庫
- 關於億級賬戶資料遷移,你應該試試這種方法...
- 一次遷移思考的記錄--bulk_collect的limit用法MIT
- AWS RDS Oracle資料遷移Oracle
- oracle 資料檔案遷移Oracle
- oracle遷移資料經驗Oracle
- oracle資料檔案遷移Oracle
- Oracle資料遷移參考Oracle
- MySQL 資料遷移Oracle工作MySqlOracle
- 關於修改資料庫引數的測試資料庫
- Oracle資料庫關於錶行連線和行遷移處理方案Oracle資料庫
- Masonite 熟悉步驟小記錄 (三、資料庫遷移)資料庫
- oracle 關於--引數檔案Oracle
- 資料庫遷移手記資料庫
- 設定NLS_LANG引數