db2 基礎操作

2021-08-20 23:18:05 字數 1979 閱讀 3177

---清空cls

----檢視資料版本

select * from sysibm.sysversions

---重啟資料

restart db  twcs177

---啟用資料庫 

activate db twcs177

---停止資料庫

deactivate db twcs177

---資料庫鏈結名

db2 catalog tcpip mode mynode remote 10.2.2.177 server 62000

---鏈結資料庫

connect to twcs177  user tsisusr  using  tsisusr

---匯入csv資料

import from d:\db2\tg_debtcash_detail.csv of del insert into tg_debtcash_detail

import from d:\tg_debt_trade.del of del insert into tg_debt_trade;

---匯入del資料

export to d:\td_enumvalue.del  of del select * from td_enumvalue where  s_typecode ='tw0086'

---查詢表10條資料

select * from tg_debtissue_detail where 1=1 fetch first 10 rows only with ur

----檢視表空間

list tablespaces show  detail;

----檢視表空間使用情況

select * from sysibm.systablespaces

---檢視表所屬表空間

select tabname,tbspace from syscat.tables where tabname='ta_localcash_info';

---檢視表空間的表

select tabname from syscat.tables where tbspace='userspace1';

select * from sysibm.systablespaces

create tablespace ts_lmc_dat 32k im database partition group ibmdefault tgroup pagesiz 32k

using(file'd:\db2\node0000\lmcdb\ts_lmc_dat32k_01' 8192--256m) extentsize16 prefetchsize 16 bufferpool bp32k

---建立表時指定表空間

create table_***(col1.....) in  userspace1

---檢視表索引

describe indexes for table ta_trl_go_comebill show detail

---檢視表字段狀況

select * from sysibm.syscolumns where tbname='ta_localcash_info';

---檢視表結構

describe table  ta_localcash_info

---清除乙個大表、

alter ta_localcash_info activate not logged initally with empty table  or 

import from null_file of del into ta_localcash_info

---重新命名資料表

rename old_table_name to new_table_name

---檢視buffer情況

select * from sysibm.sysbufferpools

---修改緩衝池大小

alter bufferpool ibmdefaultbp size 10240

db2 聯機文件 DB2基礎教程文件

1.1 db2 udb 的版本db2 針對於不同的使用者需求,提供了多種版本 企業伺服器版 enterprise server edition 該版本通常用於支援大規模的企業級應用程式以及大型企業級資料倉儲,它提供了最大程度的連線性,並 且可以與異構平台上的 db2資料庫和第三方廠商的資料庫產品共享...

db2 表操作語句

1 刪除表中的某一列 alter table t req temporary requirementdrop columntemporary requirement type id 2 在表中增加一列 alter table t req temporary requirement add tempo...

DB2常用操作命令

檢視資料庫列表 db2 list db directory 建立資料庫 db2 create database skms1v2 using codeset gbk territory cn 建立資料庫連線 db2 connect to skms1v2 user db2inst1 using db2i...