将数据文件上传到地址为IP的服务器
telnet ip 登录
db2 force application all 断开所有连接
db2 drop database mydb 删除sstf3数据库
db2 CREATE DATABASE mydb on /dbdir/mydb USING CODESET GBK TERRITORY CN COLLATE USING SYSTEM PAGESIZE 32768 创建mydb数据库
db2 connect to mydb user username using password 连接mydb数据库
db2 -td@ -vf db2look.ddl>333.log 设置日志打印格式
db2move mydb import -u username -p password
##导入某一个表:如table 在db2命令行模式下执行
import from tab204.ixf of ixf insert into table
导出某一个表( 如:atp表):
export to table.ixf of ixf select * from table
导出数据库数据
db2move mydb export -u username -p password
查询实例下有几个数据库
db2 list database directory