科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道实现DB2数据库安装的操作过程描述

实现DB2数据库安装的操作过程描述

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

以下的文章主要向大家讲述的是DB2数据库安装的正确操作步骤。

作者:51cto.com 来源:51cto.com 2010年8月18日

关键字: DB2 数据库

  • 评论
  • 分享微博
  • 分享邮件

在本页阅读全文(共2页)

二 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. 
    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章