程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> DB2數據庫 >> DB2教程 >> 如何移動DB2的數據庫建庫目錄

如何移動DB2的數據庫建庫目錄

編輯:DB2教程

由於目錄變化,需要將數據庫從目錄/home/db2inst1移動到目錄/public/home/guanghong.yu/db2inst1

重新編目數據庫

$db2 uncatalog db oracle
$db2 catalog db oracle

編目成功後會即可看到:
$db2 list db directory
 Database alias                       = ORACLE
 Database name                        = ORACLE
 Local database directory             = /public/home/guanghong.yu/db2inst1
 Database release level               = d.00
 Comment                              =
 Directory entry type                 = Indirect
 Catalog database partition number    = 0
 Alternate server hostname            =
 Alternate server port number         =

如上操作做了後仍然不能連接數據庫,需要對表空間做如下操作:
編輯mvdb.cfg
DB_NAME=ORACLE
DB_PATH=/home/db2inst1,/public/home/guanghong.yu/db2inst1
INSTANCE=db2inst1
NODENUM=0
CONT_PATH=/home/db2inst1/db2inst1/NODE0000/ORACLE/T0000000/C0000000.CAT,/public/home/guanghong.yu/db2inst1/db2inst1/NODE0000/ORACLE/T0000000/C0000000.CAT
STORAGE_PATH=/home/db2inst1/,/public/home/guanghong.yu/db2inst1
運行如下命令:
$db2relocatedb -f mvdb.cfg
[db2inst1@hpserver2 db2]$ db2relocatedb -f mvdb.cfg
Files and control structures were changed successfully.
Database was catalogued successfully.
DBT1000I  The tool completed successfully.
運行成功,數據庫可以成功連接激活啦
[db2inst1@hpserver2 db2]$ db2 connect to oracle

   Database Connection Information

 Database server        = DB2/LINUXX8664 9.7.5
 SQL authorization ID   = DB2INST1
 Local database alias   = ORACLE
OK,移動後的數據庫可以被使用啦。



作者 marvelyu

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved