码迷,mamicode.com
首页 > 数据库 > 详细

db2新建数据库

时间:2014-09-11 08:45:12      阅读:324      评论:0      收藏:0      [点我收藏+]

标签:des   blog   http   使用   ar   strong   文件   数据   art   

一、建表空间和数据库

1.在db2ad、db2db和db2ap上均执行:

[sql] view plaincopyprint?

  1. db2set db2comm=tcpip  
  2. db2set db2codepage=1386  

db2set db2comm=tcpip

db2set db2codepage=1386

2.新建数据库:

[sql] view plaincopyprint?

  1. db2 create db <dbname> using codeset gbk territory CN collate using identity  

db2 create db <dbname> using codeset gbk territory CN collate using identity

3.连接上数据库:

[sql] view plaincopyprint?

  1. db2 "connect to  <dbname>"  

db2 "connect to  <dbname>"

4.创建缓冲池 + 建立表空间;
1).删除旧的表空间:

[sql] view plaincopyprint?

  1. db2 drop tablespace  tablespace1, tablespace2, tablespace3  

db2 drop tablespace  tablespace1, tablespace2, tablespace3

2).新建缓冲池:

[sql] view plaincopyprint?

  1. db2 create bufferpool bp32k all nodes size -1 pagesize 32k  

db2 create bufferpool bp32k all nodes size -1 pagesize 32k

bp32k为该缓冲池的名称;
32K为页大小;
size=-1表示使用缺省的buffpage,而buffpage可以通过db2 get db cfg|grep -i buff参数查看到;
3).新建表空间:

[sql] view plaincopyprint?

  1. db2 "create regular tablespace  tablespace1 pagesize 32k managed by database using(file ‘/usr/yixiayizi/tablespace1‘ 5g) bufferpool bp32k"  
  2. db2 "create regular tablespace  tablespace2 pagesize 32k managed by database using(file ‘/usr/yixiayizi/tablespace2‘ 10g) bufferpool bp32k"  
  3. db2 "create regular tablespace  tablespace3 pagesize 32k managed by database using(file ‘/usr/yixiayizi/tablespace3‘ 2g) bufferpool bp32k"  

db2 "create regular tablespace  tablespace1 pagesize 32k managed by database using(file ‘/usr/yixiayizi/tablespace1‘ 5g) bufferpool bp32k"

db2 "create regular tablespace  tablespace2 pagesize 32k managed by database using(file ‘/usr/yixiayizi/tablespace2‘ 10g) bufferpool bp32k"

db2 "create regular tablespace  tablespace3 pagesize 32k managed by database using(file ‘/usr/yixiayizi/tablespace3‘ 2g) bufferpool bp32k"

注意(file ‘/usr/yixiayizi/tablespace1‘ 5g)的设置:
第一个参数:
 当指向外置盘时,file改为device;
 当指向文件路径时,为file;
第二个参数:需要是绝对路径;
第三个参数:该表空间的大小;

db2新建数据库

标签:des   blog   http   使用   ar   strong   文件   数据   art   

原文地址:http://www.cnblogs.com/zuo-zijing/p/3965615.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!