cmd檢視所有資料庫 db2 DB2常用命令彙總

2021-10-12 14:27:36 字數 3190 閱讀 1042

db2常用

命令彙總

進入db2

windows+r

,輸入cmd

回車輸入db2

回車,db21061e

未初始化命令列環境。

輸入db2cmd

回車彈出另乙個視窗

輸入db2

回車?檢視幫助資訊

檢視配置好的db

連線資料庫sample

顯示當前使用者所有表

重新連線資料庫sample

檢視使用者下表

查詢系統表

檢視dept

表結構檢視表dept

檢視程序

停止資料庫

強制停止資料庫

檢視活躍的資料庫

啟動資料庫

建立表t1

插入資料

安裝sqldbx

連線db2

資料庫建立資料庫chen

檢視資料庫

連線chen

資料庫檢視執行計畫

執行指令碼,生成執行計畫表

格式化輸出執行計畫

licensed material - program property of ibm

ibm database 2 explain table format tool

******************** explain instance ********************

db2_version:       10.01.0

source_name:       sqlc2j23

source_schema:     nullid

source_version:

explain_time:      2015-10-02-19.49.07.026000

explain_requester: administrator

original statement:

select

from

test

optimized statement:

select

q1."id" as "id"

from

administrator.test as q1

access plan:

total cost:

6.77266

query degree:

rows

return

(   1)

cost

i/otbscan

(   2)

6.77266

table: administrator

test

q1建立表test1

,插入條資料,檢視執行計畫

licensed material - program property of ibm

ibm database 2 explain table format tool

******************** explain instance ********************

db2_version:       10.01.0

source_name:       sqlc2j23

source_schema:     nullid

source_version:

explain_time:      2015-10-04-16.40.45.910000

explain_requester: administrator

original statement:

select

userid

from

test1

where

userid=50000

optimized statement:

select

q1."userid" as "userid"

from

administrator.test1 as q1

where

(decfloat(q1."userid", 34, '.') = 50000)

access plan:

total cost:

1186.33

query degree:

rows

return

(   1)

cost

i/otbscan

(   2)

1186.33

table: administrator

test1

q1建立索引

檢視執行計畫

licensed material - program property of ibm

ibm database 2 explain table format tool

******************** explain instance ********************

db2_version:       10.01.0

source_name:       sqlc2j23

source_schema:     nullid

source_version:

explain_time:      2015-10-04-17.01.58.794000

explain_requester: administrator

original statement:

select

userid

from

test1

where

userid=50000

optimized statement:

select

q1."userid" as "userid"

from

administrator.test1 as q1

where

(decfloat(q1."userid", 34, '.') = 50000)

access plan:

total cost:

901.473

query degree:

rows

return

(   1)

cost

i/oixscan

(   2)

901.473

912.122

index: administrator

inx_test1_userid

q1

DB2檢視指定資料庫大小

想要檢視db2所在資料庫的大小。登入伺服器 不論是用ssh或者是telnet登入伺服器即可。然後,執行db2命令切換到db2控制台裡面。連線到指定資料庫 db2 connect to aaadb database connection information database server db2 ...

建立 DB2 資料庫

可以使用 tivoli privacy manager 資料庫建立程式或使用資料庫產品介面可以建立 tivoli privacy manager 資料庫 表和配置資料庫。使用 db2 資料庫建立程式 使用 tivoli privacy manager 資料庫建立程式來建立 tivoli privac...

DB2 資料庫物件

資料庫物件 sql可分為三大類 1 ddl,資料定義語言,用於建立 修改 刪除資料庫物件 2 dml,資料操縱語言,用於選擇 插入 更新和刪除資料庫記錄 3 dcl,資料控制語言,用於提供資料物件訪問控制 資料型別 1 內建資料型別 2 用於自定義資料型別 a 自定義區分型別,udt允許在已有的內建...