掌握DB2數(shù)據(jù)庫(kù)中數(shù)據(jù)移動(dòng)的竅門(mén)
以下的文章主要教會(huì)大家的是輕松掌握DB2數(shù)據(jù)庫(kù)中的數(shù)據(jù)移動(dòng)的正確操作步驟,在實(shí)際操作中不同的數(shù)據(jù)庫(kù)管理系統(tǒng)之間進(jìn)行數(shù)據(jù)轉(zhuǎn)移,數(shù)據(jù)移動(dòng)通常是最實(shí)用的一種方法,因?yàn)槿魏我环N數(shù)據(jù)庫(kù)管理系統(tǒng)都支持常用的幾種文件格式,通過(guò)這個(gè)通用的接口,就很容易實(shí)現(xiàn)不同系統(tǒng)間數(shù)據(jù)的轉(zhuǎn)移。
DB2中所謂的數(shù)據(jù)移動(dòng),包括:
1. 數(shù)據(jù)的導(dǎo)入(import)
2. 數(shù)據(jù)的導(dǎo)出(export)
3. 數(shù)據(jù)的裝入(load)
導(dǎo)入和裝入都是利用DB2的相關(guān)命令把某種格式的文件中的數(shù)據(jù)保存到數(shù)據(jù)庫(kù)中的表中。
導(dǎo)出是指把DB2數(shù)據(jù)庫(kù)的表中的數(shù)據(jù)保存到某種格式的文件當(dāng)中去。
數(shù)據(jù)移動(dòng)的作用:
如果要在不同的數(shù)據(jù)庫(kù)管理系統(tǒng)之間轉(zhuǎn)移數(shù)據(jù),數(shù)據(jù)移動(dòng)通常是最實(shí)用的一種方法,因?yàn)槿魏我环N數(shù)據(jù)庫(kù)管理系統(tǒng)都支持常用的幾種文件格式,通過(guò)這個(gè)通用的接口,就很容易實(shí)現(xiàn)不同系統(tǒng)間數(shù)據(jù)的轉(zhuǎn)移。
這三個(gè)命令中,export最簡(jiǎn)單,因?yàn)閺谋碇邢蛭募D(zhuǎn)移數(shù)據(jù),通常不會(huì)出現(xiàn)錯(cuò)誤,也不會(huì)有非法的數(shù)據(jù)。
在講解命令之前,首先介紹一下文件的格式。
1. asc——非定界ascii文件,是一個(gè)ascii字符流。數(shù)據(jù)流中的行由行定界符分隔,而行中的每一列則通過(guò)起始和結(jié)束位置來(lái)定義。例如:
- 10 head Office 160 corporate new york
- 15 new england 50 eastern boston
- 20 mid atlantic 10 eastern washington
- 38 south atlantic 30 eastern atlanta
- 42 great lakes 100 midwest chicago
- 51 plains 140 midwest dallas
- 66 pacific 270 western san francisco
- 84 mountain 290 western denver
2. del——定界ascii文件,也是一個(gè)ascii字符流。數(shù)據(jù)流中的行由行定界符分隔,行中的列值由列定界符分隔。文件類型修飾符可用于修改這些定界符的默認(rèn)值。例如:
- 10,"head office",160,"corporate","new york"
- 15,"new england",50,"eastern","boston"
- 20,"mid atlantic",10,"eastern","washington"
- 38,"south atlantic",30,"eastern","atlanta"
- 42,"great lakes",100,"midwest","chicago"
- 51,"plains",140,"midwest","dallas"
- 66,"pacific",270,"western","san francisco"
- 84,"mountain",290,"western","denver"
以上的相關(guān)內(nèi)容就是對(duì)教你輕松掌握DB2數(shù)據(jù)庫(kù)中的數(shù)據(jù)移動(dòng)的介紹,望你能有所收獲。
【編輯推薦】