DB2数据库的正确安装步骤简介

数据库
以下的文章主要向大家讲述的是DB2数据库安装的正确操作步骤,如果你对DB2数据库安装的正确操作步骤有兴趣的话,以下的文章将会为你揭开它的神秘面纱,以下就是文章的详细内容介绍,望大家借鉴。

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过期的提示

 建立样表#p#

 $DB2sampl

 测试

 $DB2 "select * from stuff"

二、DB2的初次使用

$DB2 

Command Line Processor for DB2 SDK 8.2.3 

You can issue database manager commands and SQL statements from the command 

prompt. For example: 

DB2 => connect to sample 

DB2 => bind sample.bnd 

For general help, type:. 

For command help, type: command, where command can be 

the first few keywords of a database manager command. For example: 

CATALOG DATABASE for help on the CATALOG DATABASE command 

CATALOG for help on all of the CATALOG commands. 

To exit DB2 interactive mode, type QUIT at the command prompt. Outside  #p#

interactive mode, all commands must be prefixed with 'DB2'. 

To list the current command option settings, type LIST COMMAND OPTIONS. 

For more detailed help, refer to the Online Reference Manual. 

DB2 => DB2start 

DB20000I The DB2START command completed successfully. 

DB2 => create db mydb 

DB20000I The CREATE DATABASE command completed successfully. 

DB2 => connect to mydb user admin 

Enter current password for admin: 

Database Connection Information 

Database server = DB2/NT 8.2.3 

SQL authorization ID = ADMIN

Local database alias = MYDB

DB2 => create schema myschema 

DB20000I The SQL command completed successfully.  #p#

DB2 => create table myschema.mytable(id int, name varchar(30)) 

DB20000I The SQL command completed successfully. 

DB2 => insert into myschema.mytable values(101,'Bruce Lu') 

DB20000I The SQL command completed successfully. 

DB2 => select * from myschema.mytable 

ID NAME 

101 Bruce Lu 

1 record(s) selected. 

DB2 => drop table myschema.mytable 

DB20000I The SQL command completed successfully.  #p#

DB2 => drop schema myschema restrict 

DB20000I The SQL command completed successfully. 

DB2 => connect reset 

DB20000I The SQL command completed successfully. 

DB2 => drop db mydb 

DB20000I The DROP DATABASE command completed successfully. 

DB2 => DB2stop 

DB20000I The DB2STOP command completed successfully. 

DB2 => quit 

DB20000I The QUIT command completed successfully.
 

责任编辑:段燃 来源: 互联网
相关推荐

2010-11-01 11:30:41

DB2数据库权限

2011-03-11 16:02:03

DB2数据库安装

2010-08-18 17:32:34

DB2数据库

2010-08-27 14:39:46

db2连接数据库

2010-07-30 09:57:31

2010-08-18 13:49:01

DB2数据库

2010-08-12 17:14:25

DB2备份恢复数据库步

2010-08-12 10:27:21

DB2数据库备份

2010-08-11 17:24:13

DB2数据库优化

2010-09-06 08:29:18

连接DB2数据库

2010-07-27 15:33:00

DB2数据库备份

2010-08-26 17:11:50

DB2database Pa

2010-08-03 13:56:11

DB2表复制

2010-08-27 11:08:59

DB2安装目录

2010-08-04 11:29:59

2011-03-14 17:03:21

DB2数据库性能监控

2010-08-05 09:53:35

2010-07-28 11:05:57

DB2数据库

2010-08-18 17:26:29

DB2数据库

2010-08-12 10:54:21

IBM DB2数据库
点赞
收藏

51CTO技术栈公众号