使用DB2 CLP命令行工具中操作
查看数据库列表
db2 list db directory
创建数据库
db2 CREATE DATABASE SKMS1V2 USING CODESET GBK TERRITORY CN
建立数据库连接
db2 connect to SKMS1V2 user db2inst1 using db2inst1
设置模式
db2 set current schema SKMS
执行文件
db2 -tvf /home/db2inst1/SKMS/SKMS1V2.sql>/home/db2inst1/SKMS/temp.log
查询所有表
db2 list tables for schema 'SKMS'
断开当前连接
db2 connect reset或者:db2 disconnect current
当前活动连接
db2 list application
删除数据库
db2 drop db SKMS1V2
干掉指定连接
db2 "force application(407)" 这个是application handle
查看表结构
db2 describe table tablename
查询表数据
db2 "select * from SKMS.KEY_INFO" //注意schema
查看数据库的信息
db2 get db cfg for SKMS1
序列使用
insert into skms.key_info(seckeyid, centerid, seckey, sectype, secstatus, keygroup) values(nextval for skms.seckey_seq, 91, 'zrDQQZKa3QihAnTEUjW6mw==', 101, 1, 1);
编目
db2 catalog tcpip node DB2 remote 192.168.11.23 server 50000
db2 catalog db CAM at node DB2
————————————————————————————————————————————————————————————————————
工作一个多月了,因为公司要用DB2数据库,所以总是努力去看这方面的书,一段时间来有点体会也总结了一些常用的DB2命令,发出来给大家分享吧!希望对大家会有所帮忙,呵呵。。
启动DB2服务:db2start
关闭DB2服务: db2stop
一、加载数据:
1、 以默认分隔符加载,默认为“,”号
db2 "import from btpoper.txt of del insert into btpoper"
2、 以指定分隔符“|”加载
db2 "import from btpoper.txt of del modified by coldel| insert into btpoper"
二、卸载数据:
1、 卸载一个表中全部数据
db2 "export to btpoper.txt of del select * from btpoper"
db2 "export to btpoper.txt of del modified by coldel| select * from btpoper"
2、 带条件卸载一个表中数据
db2 "export to btpoper.txt of del select * from btpoper where brhid='907020000'"
db2 "export to cmmcode.txt of del select * from cmmcode where codtp='01'"
db2 "export to cmmcode.txt of del modified by coldel| select * from cmmcode where codtp='01'"
三、查询数据结构及数据:
db2 "select * from btpoper"
db2 "select * from btpoper where brhid='907020000' and oprid='0001'"
db2 "select oprid,oprnm,brhid,passwd from btpoper"
四、删除表中数据:
db2 "delete from btpoper"
db2 "delete from btpoper where brhid='907020000' or brhid='907010000'"
五、修改表中数据:
db2 "update svmmst set prtlines=0 where brhid='907010000' and jobtp='02'"
db2 "update svmmst set prtlines=0 where jobtp='02' or jobtp='03'"
六、联接数据库
db2 connect to btpdbs
七、清除数据库联接
db2 connect reset 断开数据库连接
db2 terminate 断开数据库连接
db2 force applications all 断开所有数据库连接
八、备份数据库
1、 db2 backup db btpdbs
2、 db2move btpdbs export
db2look -d btpdbs -e -x [-a] -o crttbl.sql
九、恢复数据库
1、 db2 restore db btpdbs without rolling forward
2、 db2 -tvf crtdb.sql
crtdb.sql文件内容:create db btpdbs on /db2catalog
db2 -stvf crttbl.sql
db2move btpdbs import
十、DB2帮助命令:
db2 ?
db2 ? restroe
db2 ? sqlcode (例:db2 ? sql0803) 注:code必须为4位数,不够4位,前面补0
十一、bind命令:将应用程序与数据库作一捆绑,每次恢复数据库后,建议都要做一次bind
(1) db2 bind br8200.bnd
(2) /btp/bin/bndall /btp/bnd
/btp/bin/bndall /btp/tran/bnd
十二、查看数据库参数:
db2 get dbm cfg
db2 get db cfg for btpdbs
十三、修改数据库参数:
db2 update db cfg for btpdbs using LOGBUFSZ 20
db2 update db cfg for btpdbs using LOGFILSIZ 5120
改完后,应执行以下命令使其生效:
db2 stop
db2 start
补充:
db2 set schema btp 修改当前模式为"btp"
db2 list tablespaces show detail 查看当前数据库表空间分配状况
db2 list tablespace containers for 2 show detail 查看tablespace id=2使用容器所在目录
db2 list application
db2 list db directory 列出所有数据库
db2 list active databases 列出所有活动的数据库
db2 list tables for all 列出当前数据库下所有的表
db2 list tables for schema btp 列出当前数据库中schema为btp的表
db2 list tablespaces show detail 显示数据库空间使用情况
db2 list packages for all
db2 "import from tab76.ixf of ixf commitcount 5000 insert into achact"
db2 "create table achact_t like achact"
db2 "rename table achact_t to achact"
db2 "insert into achact_t select * from achact where txndt>=(select lstpgdt from
acmact where actno=achact.actno)"
db2 get snapshot for dynaimic sql on jining
删除一个实例:
# cd /usr/lpp/db2_07_01/instance
# ./db2idrop InstName
列出所有DB2实例:
# cd /usr/lpp/db2_07_01/bin
# ./db2ilist
为数据库建立编目
$ db2 catalog db btpdbs on /db2catalog
取消已编目的数据库btpdbs
$ db2 uncatalog db btpdbs
查看版本
# db2level
显示当前数据库管理实例
$ db2 get instance
设置实例系统启动时是否自动启动。
$ db2iauto -on 自动启动
$ db2iauto -off 不自动启动
数据库优化命令:
reorg、runstats
当数据库经过一段时间使用,数据空间会变得越来越庞大。一些delete掉
的数据仍存放在数据库中,占用数据空间,影响系统性能。因此需要定期
运行reorg、runstats命令,清除已delete的数据,优化数据结构。
db2 reorg table 表名
db2 runstats on table 表名 with distribution and indexes all
因为要优化的表比较多,所以在/btp/bin目录下提供了一个sh程序runsall,
可在当天业务结束后,运行runsall,对数据库进行优化
——————————————————————————————————————————————————————————————
命令行窗口
Sql代码
#打开命令行窗口 db2cmd #打开控制中心 db2cmd db2cc #打开命令编辑器 db2cmd db2ce
Sql代码
#启动数据库实例 db2start #停止数据库实例 db2stop 如果你不能停止数据库由于激活的连接,在运行db2stop前执行db2 force application all就可以了 #创建数据库 db2 create db [dbname] #连接到数据库 db2 connect to [dbname] user [username] using [password] #断开数据库连接 db2 connect reset #列出所有数据库 db2 list db directory #列出所有激活的数据库 db2 list active databases #列出所有数据库配置 db2 get db cfg #删除数据库 db2 drop database [dbname]
Sql代码
#列出所有用户表 db2 list tables #列出所有系统表 db2 list tables for system #列出所有表 db2 list tables for all #列出系统表 db2 list tables for system #列出用户表 db2 list tables for user #列出特定用户表 db2 list tables for schema [user] #创建一个与数据库中某个表(t2)结构相同的新表(t1) db2 create table t1 like t2 #查询表 db2 "select * from table name where ..." #显示表结构 db2 describe table tablename #修改列 db2 alter table [tablename] alter column [columname] set data type varchar(24)
Sql代码
#执行脚本文件 db2 -tvf scripts.sql
Sql代码
#查看命令帮助 db2 ? db2start #查看错误码信息 db2 ? 22001
Sql代码
1. 启动数据库 db2start 2. 停止数据库 db2stop 3. 连接数据库 db2 connect to o_yd user db2 using pwd 4. 读数据库管理程序配置 db2 get dbm cfg 5. 写数据库管理程序配置 db2 update dbm cfg using 参数名 参数值 6. 读数据库的配置 db2 connect to o_yd user db2 using pwd db2 get db cfg for o_yd 7. 写数据库的配置 db2 connect to o_yd user db2 using pwd db2 update db cfg for o_yd using 参数名 参数值 8. 关闭所有应用连接 db2 force application all db2 force application ID1,ID2,,,Idn MODE ASYNC (db2 list application for db o_yd show detail)
Sql代码
9. 备份数据库 db2 force application all db2 backup db o_yd to d: (db2 initialize tape on //./tape0) (db2 rewind tape on //./tape0) db2 backup db o_yd to //./tape0 10. 恢复数据库 db2 restore db o_yd from d: to d: db2 restore db o_yd from //./tape0 to d: 11. 绑定存储过程 db2 connect to o_yd user db2 using pwd db2 bind c:/dfplus.bnd 拷贝存储过程到服务器上的C:/sqllib/function目录中 12. 整理表 db2 connect to o_yd user db2 using pwd db2 reorg table ydd db2 runstats on table ydd with distribution and indexes all 13. 导出表数据 db2 export to c:/sw.txt of del select * from dftz db2 export to c:/sw.ixf of ixf select * from dftz 14. 导入表数据 db2 import from c:/sw.txt of del insert into ylbx.czyxx db2 import to c:/sw.txt of del commitcount 5000 messages c:/dftz.msg insert into dftz db2 import to c:/dftz.ixf of ixf commitcount 5000 messages c:/dftz.msg insert into dftz db2 import to c:/dftz.ixf of ixf commitcount 5000 insert into dftz db2 import to c:/dftz.ixf of ixf commitcount 5000 insert_update into dftz db2 import to c:/dftz.ixf of ixf commitcount 5000 replace into dftz db2 import to c:/dftz.ixf of ixf commitcount 5000 create into dftz (仅IXF) db2 import to c:/dftz.ixf of ixf commitcount 5000 replace_create into dftz (仅IXF) 15. 执行一个批处理文件 db2 –tf 批处理文件名 (文件中每一条命令用 ;结束) 16. 自动生成批处理文件 建文本文件:temp.sql select 'runstats on table DB2.' || tabname || ' with distribution and detailed indexes all;' from syscat.tables where tabschema='DB2' and type='T'; db2 –tf temp.sql>runstats.sql
Sql代码
17. 自动生成建表(视图)语句 在服务器上:C:/sqllib/misc目录中 db2 connect to o_yd user db2 using pwd db2look –d o_yd –u db2 –e –p –c c:/o_yd.txt db2look -d lys -e -a -x -i db2admin -o c:/aa.txt 18. 其他命令 grant dbadm on database to user bb 19select * from czyxx fetch first 1 rows only 20db2look –d lys –u db2admin –w –asd –a –e –o c:/mytable.txt
Sql代码