程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> DB2數據庫 >> DB2教程 >> 實現DB2數據庫安裝的操作過程描述(1)

實現DB2數據庫安裝的操作過程描述(1)

編輯:DB2教程

以下的文章主要向大家講述的是DB2數據庫安裝的正確操作步驟,如果你對DB2數據庫安裝的正確操作步驟有興趣的話,以下的文章將會為你揭開它的神秘面紗,以下就是文章的詳細內容介紹,望大家借鑒。

一 DB2安裝過程

1 新建3個組,分別為管理組件das組,實例inst組,守護def組。隨後在三個組中分別加入對應的用戶:das,inst,和def。注意的是inst 用戶>同時屬於das組。為各個用戶建立目錄和密碼。

2 運行DB2SETUP後未出現向導,出現提示後退出的解決。

請不要執行DB2SETUP,請執行DB2_install,然後輸入DB2數據庫安裝的組件名字進行安裝。

3 創建實例

在/opt/IBM/db2/v8.1/instane/下分別執行

./dascrt -u dasuser

./dasicrt -w 32 -u defuser instuser #如未指定位寬,則會報錯說配置文件不能正常初始化。

在/cfg/下執行db2ln

4 設置

切換到instuser用戶下

$db2set -g DB2COMM = TCPIP #在全局或使用-i指定某個實例的連接屬性

5 啟動數據庫

$db2start #在啟動前請修改系統時間到2005年以前,否則會出現數據庫license過期的提示

建立樣表

$db2sampl

測試

  1. $db2 "select * from stuff" 

二 DB2的初次使用

  1. $db2  
  2. Command Line Processor for DB2 SDK 8.2.3  
  3. You can issue database manager commands and SQL statements from the command  
  4. prompt. For example:  
  5. db2 => connect to sample  
  6. db2 => bind sample.bnd  
  7. For general help, type: ?.  
  8. For command help, type: ? command, where command can be  
  9. the first few keywords of a database manager command. For example:  
  10. ? CATALOG DATABASE for help on the CATALOG DATABASE command  
  11. ? CATALOG for help on all of the CATALOG commands.  
  12. To exit db2 interactive mode, type QUIT at the command prompt. Outside  
  13. interactive mode, all commands must be prefixed with 'db2'.  
  14. To list the current command option settings, type LIST COMMAND OPTIONS.  
  15. For more detailed help, refer to the Online Reference Manual.  
  16. db2 => db2start  
  17. DB20000I The DB2START command completed successfully.  
  18. db2 => create db mydb  
  19. DB20000I The CREATE DATABASE command completed successfully.  
  20. db2 => connect to mydb user admin  
  21. Enter current password for admin:  
  22. Database Connection Information  
  23. Database server = DB2/NT 8.2.3  
  24. SQL authorization ID = ADMIN 
  25. Local database alias = MYDB 
  26. db2 => create schema myschema  
  27. DB20000I The SQL command completed successfully.  
  28. db2 => create table myschema.mytable(id int, name varchar(30))  
  29. DB20000I The SQL command completed successfully.  
  30. db2 => insert into myschema.mytable values(101,'Bruce Lu')  
  31. DB20000I The SQL command completed successfully.  
  32. db2 => select * from myschema.mytable  
  33. ID NAME  
  34. 101 Bruce Lu  
  35. 1 record(s) selected.  
  36. db2 => drop table myschema.mytable  
  37. DB20000I The SQL command completed successfully.  
  38. db2 => drop schema myschema restrict  
  39. DB20000I The SQL command completed successfully.  
  40. db2 => connect reset  
  41. DB20000I The SQL command completed successfully.  
  42. db2 => drop db mydb  
  43. DB20000I The DROP DATABASE command completed successfully.  
  44. db2 => db2stop  
  45. DB20000I The DB2STOP command completed successfully.  
  46. db2 => quit  
  47. DB20000I The QUIT command completed successfully.   

以上的相關內容就是對DB2數據庫安裝的介紹,望你能有所收獲。

延伸閱讀

詳解DB 2軟件下載及WINDOWS XP下的安裝步驟

如果您沒有DB2的安裝軟件,那麼您可以到IBM的官方網站上下載免費試用版,網址如下:http://www-01.ibm.com/software/cn/data/download/

圖1

獲得的安裝文件是一個壓縮包:

圖2


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