DB2 SQL命令小集

jst143發表於2011-02-22

1、資料操作語言(DML:select,delete,insert,update)
    <1>查詢資料庫目錄:
             db2 list db directory
    <2>查詢資料庫中表
           db2 list tables 當前使用者
           db2 list tables for all 所有表
         db2 list tables for schema schemaname 指定模式的表
    <3>顯示錶結構
           db2 describe table tablename
    <4>插入資料
           db2 insert into tablename(欄位名,欄位名...) values (與欄位名一一對應的值)
           db2 insert into tablename1(欄位1,欄位2,欄位3...)
         select 欄位1,欄位2,欄位3...from tablename2 + 查詢條件
    <5>更改表或檢視資料
           db2 update tablename/viewname set 欄位名1='',欄位2='',...+查詢條件
    <6>刪除資料
             db2 delete from tablename where + 條件  
   <7>匯入資料
          db2 "import from E:\name.txt of del insert into tableName"
          db2 "import from E:\name.ixf of ixf commitcount 5000 insert /create/replace into tableName"
          db2 "load client from D:\xx.txt of del insert/replace into tabName"(不需要寫日誌,但插入前表必須存在;不能create table)
          db2 "load client from D:\xx.txt of del restart/terminate into tabName" 當匯入資料出現問題被強行中斷時,此表會被加鎖,通過此命令可以解鎖
    <8>匯出資料
             db2 "export to E:\name.txt of del select * from tableName"
             db2 "export to E:\name.txt of del MODIFIED BY NOCHARDEL select * from tableName"(匯出不帶分號的資料)
         匯出表結構和資料
             db2 "export to E:\name.ixf of ixf MODIFIED BY NOCHARDEL select * from tableName"
             db2 "export to E:\name.ixf of ixf MODIFIED BY NOCHARDEL select * from tableName fetch first (取數+UNM) rows only"(取固定條數)
         匯出表結構
             db2look -d dbName -e -t tableName -o D:\xxx.sql(path) -i userName -w password
             db2look -d dbName -z tabSchema -e -c -i userName -w password -o + 路徑名
         匯出儲存過程結構
             db2 "export to xxx.sql of del select text from syscat.procedures where procname='大寫儲存過程名'"
      <9>查詢表狀態
          db2 load query table + tableName
      <10>查詢當前表資料量(資料入庫時)
          db2 select count(1) from tab with ur
      <11>修改當前表名、模式名
          db2 rename table tab1 to tab2
2、資料定義語言(DDL:create,alter)
       <1>建立或刪除例項
       db2icrt instance_name/db2idrop -f instance_name
       linux:db2icrt -u user_id instance_name
       <2>建立檢視、表、模式
     db2 create view/table/schema
     建立指定使用者的模式
     db2 create schema schName AUTHORIZATION userName
     db2 create schema AUTHORIZATION userName(沒有指定模式名時,模式名隱含為使用者名稱userName)
      定義含有預設值的表
     db2 create table tableName(column1 資料型別,column2 資料型別 default '預設值')
     基於已存在的表
     db2 create table clone_tablename like tablename
     db2 create table clone_tablename as (select * from tablename) definition only
     建立物化查詢表(MQT)
     create table new_table_name as (select * from table_name) data initially deferred refresh deferred;
     refresh table new_table_name;
     注意:物化表類似一個查詢,沒有真正形成表,型別顯示為Query。但它完全可以當表來用。
                  建立表並指定其索引表空間
                         db2 create table(.....) in userspace1 INDEX in userspace2
                         (userspace1是表所在空間,userspace2是表上索引所在空間)
    <3>建立檢視
           db2 create view viewname
                as select 欄位名1,欄位名2...from table where + 條件
         with check option 規定一種約束:通過檢視插入或更新的每一行都必須符合檢視的定義,如:
         create view emp_view2(empno,empname,deptno) as (select id,name,dept from employee where dept=10)with check option
         當此檢視用於更新資料或插入新值時,with check option 限制了dept列的輸入值
    <4>修改表(列,主鍵,唯一約束,檢查約束)
   1)新增新列 alter table tablename ADD COLUMN columnname 資料型別
   2)新增約束
   3)修改表中欄位 alter table tablename alter columnname set data type 資料型別
   4) 新增主鍵 alter table tablename add primary key(c1,c2)
   <5>刪除模式、表、檢視
      drop schema schName
      CASCADE(級聯)表示刪除模式的同時刪除該模式中所有的資料庫物件
      RESTRICT(限制)表示該模式下定義了資料庫物件時,限制刪除;沒有任何資料庫物件時才能刪除
   <6>重新組織表及其索引
      重組表資料  reorg table tableName index indexName(根據索引)
      重組表索引  reorg indexes all for table tableName
   <7>重新收集表及其索引統計資訊
      runstats on table tableName for indexes all(跑批前重新收集所用表資訊可以提高效率)
   <8>DB2自動增長主鍵方法
      IDENTITY列
        generated always as identity(start with 1,increment by 1)將一個欄位指定為自增長型欄位,放在資料型別後。
      SEQUENCE物件(序列)
3、資料控制語言(DCL:grant,revoke)

    將表的特權授予使用者
    grant select,update,delete on table tableName to user userName with grant option
    將包特權授予同組
    grant control on package packageName on group groupName with grant option

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/23577591/viewspace-687699/,如需轉載,請註明出處,否則將追究法律責任。

相關文章