在 Linux 上啟動 DB2 方法:
成都創(chuàng)新互聯(lián)公司是一家專注于做網(wǎng)站、網(wǎng)站建設與策劃設計,慶陽網(wǎng)站建設哪家好?成都創(chuàng)新互聯(lián)公司做網(wǎng)站,專注于網(wǎng)站建設十余年,網(wǎng)設計領域的專業(yè)建站公司;建站業(yè)務涵蓋:慶陽等地區(qū)。慶陽做網(wǎng)站價格咨詢:028-86922220
以下過程描述了如何在 Linux? 上啟動 DB2? 控制中心。
要啟動 DB2 控制中心,請執(zhí)行以下步驟:
(1) 作為 root 用戶登錄。
(2) 在命令行上,運行以下命令:xhost +localhost。
(3) 運行以下命令:su - ctginst1。
(4) 運行以下命令:db2cc。
DB2數(shù)據(jù)庫命令簡介 1.啟動數(shù)據(jù)庫 DB2start 2.停止數(shù)據(jù)庫 DB2stop DB2數(shù)據(jù)庫在linux相關指令之3.連接數(shù)據(jù)庫 DB2 connect to o_yd user DB2 using pwd 4.讀數(shù)據(jù)庫管理程序配置 DB2 get dbm cfg 5.寫數(shù)據(jù)庫管理程序配置 DB2 update dbm cfg using 參數(shù)名 參數(shù)值 6.讀數(shù)據(jù)庫的配置 DB2 connect to o_yd user DB2 using pwd DB2 get db cfg for o_yd 7.寫數(shù)據(jù)庫的配置 DB2 connect to o_yd user DB2 using pwd DB2 update db cfg for o_yd using 參數(shù)名 參數(shù)值 8.關閉所有應用連接 DB2 force application all DB2 force application ID1,ID2,,,Idn MODE ASYNC (DB2 list application for db o_yd show detail) 9.備份數(shù)據(jù)庫 DB2 force application all DB2 backup db o_yd to d: (DB2 initialize tape on \.tape0) (DB2 rewind tape on \.tape0) DB2 backup db o_yd to \.tape0 10.恢復數(shù)據(jù)庫 DB2 restore db o_yd from d: to d: DB2 restore db o_yd from \.tape0 to d: DB2數(shù)據(jù)庫在linux相關指令之11.綁定存儲過程 DB2 connect to o_yd user DB2 using pwd DB2 bind c:dfplus.bnd 拷貝存儲過程到服務器上的C:sqllibfunction目錄中 12.整理表 DB2 connect to o_yd user DB2 using pwd DB2 reorg table ydd DB2 runstats on table ydd with distribution and indexes all 13.導出表數(shù)據(jù) DB2 export to c:dftz.txt of del select * from dftz DB2 export to c:dftz.ixf of ixf select * from dftz 14.導入表數(shù)據(jù) import from c:123.txt of del insert into ylbx.czyxx DB2 import to c:dftz.txt of del commitcount 5000 messages c:dftz.msg insert into dftz DB2 import to c:dftz.ixf of ixf commitcount 5000 messages c:dftz.msg insert into dftz DB2 import to c:dftz.ixf of ixf commitcount 5000 insert into dftz DB2 import to c:dftz.ixf of ixf commitcount 5000 insert_update into dftz DB2 import to c:dftz.ixf of ixf commitcount 5000 replace into dftz DB2 import to c:dftz.ixf of ixf commitcount 5000 create into dftz (僅IXF) DB2 import to c:dftz.ixf of ixf commitcount 5000 replace_create into dftz (僅IXF) 15.執(zhí)行一個批處理文件 DB2 -tf 批處理文件名 (文件中每一條命令用 ;結束) 16.自動生成批處理文件 建文本文件:temp.sql select 'runstats on table DB2.' || tabname || ' with distribution and detailed indexes all;' from syscat.tables where tabschema='DB2' and type='T'; DB2 -tf temp.sqlrunstats.sql 17.自動生成建表(視圖)語句 在服務器上:C:sqllibmisc目錄中 DB2 connect to o_yd user DB2 using pwd DB2look -d o_yd -u DB2 -e -p -c c:o_yd.txt DB2數(shù)據(jù)庫在linux相關指令之18.其他命令 grant dbadm on database to user bb 19select * from czyxx fetch first 1 rows only 20DB2look -d ylbx -u DB2admin -w -asd -a -e -o a.txt21. 顯示當前用戶所有表 list tables 22.列出所有的系統(tǒng)表 list tables for system 23.查看表結構 DB2 describe select * from user.tables (實習編輯:HJ)
操作方法如下:
1.將secureCRT連接到數(shù)據(jù)庫所在的linux機器,然后切換到oracle用戶模式下;
2.接下來用sqlplus登錄到數(shù)據(jù)庫,然后再關閉數(shù)據(jù)庫;
3.然后起動監(jiān)聽;
4.最后客戶端連接。
工具和原料:linux安裝,oracle數(shù)據(jù)庫,SecureCRT,任意ssh連接工具都可以。