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

DB2數據庫中安裝sample數據庫與TOLLSDB的步驟描述

編輯:DB2教程

此文章主要講述的是在DB2數據庫中安裝sample數據庫與TOLLSDB數據庫的正確操作步驟,以及對安裝sample數據庫與TOLLSDB數據庫是我的小的細節操作的介紹,以下就是文章的主要內容講述。

數據庫, sample, TOLLSDB數據庫, sample, TOLLSDB

安裝示例數據庫和TOOLSDB數據庫:

安裝完成後,欲登陸sample數據庫和toolsdb,發現出錯:

  1. db2 => connect to sample  
  2. SQL1031N The database directory cannot be found on the indicated file system.  
  3. db2 => connect to toolsdb  
  4. SQL1031N The database directory cannot be found on the indicated file system.  

1、 猜想DB2數據庫未安裝,查看/hom/db2inst1目錄下的,僅有sqllib文件夾:

  1. [db2inst1@localhost ~]$ ls  
  2. sqllib  

對比下其他學員的情況,發現本人的服務器上少了一個db2inst1目錄:

  1. [db2inst1@localhost ~]$ ls  
  2. db2inst1 sqllib  

2、下面手動對兩個數據庫進行創建:

2.1、創建示例數據庫:

  1. [db2inst1@localhost ~]$ db2sampl  
  2. Creating database "SAMPLE"...  
  3. Connecting to database "SAMPLE"...  
  4. Creating tables and data in schema "DB2INST1"...  
  5. Creating tables with XML columns and XML data in schema "DB2INST1"...  
  6. 'db2sampl' processing complete.  

2.2、創建toolsbd數據庫:

  1. [db2inst1@localhost NODE0000]$ db2 create tools catalog systools create new database toolsdb  
  2. DB20000I The CREATE TOOLS CATALOG command completed successfully.  

2.3、確認相應DB2數據庫文件創建的情況:

  1. [db2inst1@localhost NODE0000]$ cd  
  2. [db2inst1@localhost ~]$ ls  
  3. db2inst1 sqllib  
  4. [db2inst1@localhost ~]$ cd db2inst1/  
  5. [db2inst1@localhost db2inst1]$ ls  
  6. NODE0000  
  7. [db2inst1@localhost db2inst1]$ cd NODE0000/  
  8. [db2inst1@localhost NODE0000]$ ls  
  9. SAMPLE SQL00001 SQL00002 sqldbdir TOOLSDB  

2.4、登陸數據庫。首先登陸到sample,然後斷開與該數據庫的連接,再連接到toolsdb:

  1. [db2inst1@localhost NODE0000]$ db2  
  2. (c) Copyright IBM Corporation 1993,2007  
  3. Command Line Processor for DB2 ClIEnt 9.7.1  
  4. You can issue database manager commands and SQL statements from the command  
  5. prompt. For example:  
  6. db2 => connect to sample  
  7. db2 => bind sample.bnd  
  8. For general help, type: ?.  
  9. For command help, type: ? command, where command can be  
  10. the first few keyWords of a database manager command. For example:  
  11. ? CATALOG DATABASE for help on the CATALOG DATABASE command  
  12. ? CATALOG for help on all of the CATALOG commands.  
  13. To exit db2 interactive mode, type QUIT at the command prompt. Outside  
  14. interactive mode, all commands must be prefixed with 'db2'.  
  15. To list the current command option settings, type LIST COMMAND OPTIONS.  
  16. For more detailed help, refer to the Online Reference Manual.  
  17. db2 => connect to sample  
  18. Database Connection Information  
  19. Database server = DB2/Linux 9.7.1  
  20. SQL authorization ID = DB2INST1 
  21. Local database alias = SAMPLE 
  22. db2 => disconnect sample  
  23. DB20000I The SQL DISCONNECT command completed successfully.  
  24. db2 => connect to toolsdb  
  25. Database Connection Information  
  26. Database server = DB2/Linux 9.7.1  
  27. SQL authorization ID = DB2INST1 
  28. Local database alias = TOOLSDB   

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

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