当前位置:数据库 > DB2 >>

db2学习指令(二)


21.察看本地节点
 
db2 list node direcotry
 
22.节点反编目
 
db2 uncatalog node node_name
  www.zzzyk.com  
23.数据库编目
 
db2 catalog db db_name as db_alias at node node_name
 
24.察看数据库的编目
 
db2 list db directory
 
25.连接数据库
 
db2 connect to db_alias user user_name using user_password
 
26.数据库反编目
 
db2 uncatalog db db_alias
 
27.导出数据
 
db2 export to myfile of ixf messages msg select * from tb1
 
28.导入数据
 
db2 import from myfile of ixf messages msg replace into tb1
 
29.导出数据库的所有表数据
 
db2move test export
 
30.生成数据库的定义
  www.zzzyk.com  
db2look -d db_alias -a -e -m -l -x -f -o db2look.sql
 
31.创建数据库
 
db2 create db test1
 
32.生成定义
 
db2 -tvf db2look.sql
 
33.导入数据库所有的数据
 
db2move db_alias import
 
34.重组检查
 
db2 reorgchk
 
35.重组表tb1
 
db2 reorg table tb1
 
36.更新统计信息
 
db2 runstats on table tb1
 
37.备份数据库test
 
db2 backup db test
 
38.恢复数据库test
 
db2 restore db test
 
39.列出容器的信息
 
db2 list tablespace containers for tbs_id show detail
  www.zzzyk.com  
40.创建表:
 
db2 ceate table tb1(id integer not null,name char(10))
 
create table  tb1 like tb2 
in 表空间
partitioning key(kpi_id) using hashing; 
 
查看快照 
select * from tb1 with ur; 
 
 
作者 manULinux
Oracle
MySQL
Access
SQLServer
DB2
Excel
SQLite
SYBASE
Postgres
如果你遇到数据库难题:
请访问www.zzzyk.com 试试
CopyRight © 2012 站长网 编程知识问答 www.zzzyk.com All Rights Reserved
部份技术文章来自网络,