成人免费xxxxx在线视频软件_久久精品久久久_亚洲国产精品久久久_天天色天天色_亚洲人成一区_欧美一级欧美三级在线观看

DB2數(shù)據(jù)庫在linux操作系統(tǒng)的指令有哪些?

數(shù)據(jù)庫
以下的文章主要描述的是DB2數(shù)據(jù)庫在linux操作系統(tǒng)下的相關(guān)指令,以及對其在實際操作中值得我們大家留意的相關(guān)事項的描述。

以下的文章主要描述的是DB2數(shù)據(jù)庫在linux操作系統(tǒng)下的相關(guān)指令,你如果對DB2數(shù)據(jù)庫在linux操作系統(tǒng)下的相關(guān)指令有興趣的話你就可以點擊以下的文章進行觀看了,以下就是文章的詳細內(nèi)容介紹,望大家借鑒。

DB2數(shù)據(jù)庫命令簡介

1.啟動數(shù)據(jù)庫

DB2start

2.停止數(shù)據(jù)庫

DB2stop

 

DB2數(shù)據(jù)庫在linux相關(guān)指令之3.連接數(shù)據(jù)庫

DB2 connect to o_yd user DB2 using pwd

4.讀數(shù)據(jù)庫管理程序配置

DB2 get dbm cfg

 

5.寫數(shù)據(jù)庫管理程序配置

DB2 update dbm cfg using 參數(shù)名 參數(shù)值

6.讀數(shù)據(jù)庫的配置

DB2 connect to o_yd user DB2 using pwd

DB2 get db cfg for o_yd

7.寫數(shù)據(jù)庫的配置

 

DB2 connect to o_yd user DB2 using pwd

DB2 update db cfg for o_yd using 參數(shù)名 參數(shù)值

8.關(guān)閉所有應(yīng)用連接

DB2 force application all

DB2 force application ID1,ID2,,,Idn MODE ASYNC

 

(DB2 list application for db o_yd show detail)

9.備份數(shù)據(jù)庫

DB2 force application all

DB2 backup db o_yd to d:

(DB2 initialize tape on \.tape0)

(DB2 rewind tape on \.tape0)

 

DB2 backup db o_yd to \.tape0

10.恢復(fù)數(shù)據(jù)庫

DB2 restore db o_yd from d: to d:

DB2 restore db o_yd from \.tape0 to d:

DB2數(shù)據(jù)庫在linux相關(guān)指令之11.綁定存儲過程

DB2 connect to o_yd user DB2 using pwd

 

DB2 bind c:dfplus.bnd

拷貝存儲過程到服務(wù)器上的C:sqllibfunction目錄中

12.整理表

DB2 connect to o_yd user DB2 using pwd

DB2 reorg table ydd

DB2 runstats on table ydd with distribution and indexes all

13.導(dǎo)出表數(shù)據(jù)

DB2 export to c:dftz.txt of del select * from dftz

 

DB2 export to c:dftz.ixf of ixf select * from dftz

14.導(dǎo)入表數(shù)據(jù)

import from c:123.txt of del insert into ylbx.czyxx

DB2 import to c:dftz.txt of del commitcount 5000 messages c:dftz.msg insert into dftz

DB2 import to c:dftz.ixf of ixf commitcount 5000 messages c:dftz.msg insert into dftz

DB2 import to c:dftz.ixf of ixf commitcount 5000 insert into dftz

DB2 import to c:dftz.ixf of ixf commitcount 5000 insert_update into dftz

 

DB2 import to c:dftz.ixf of ixf commitcount 5000 replace into dftz

DB2 import to c:dftz.ixf of ixf commitcount 5000 create into dftz (僅IXF)

DB2 import to c:dftz.ixf of ixf commitcount 5000 replace_create into dftz (僅IXF)

15.執(zhí)行一個批處理文件

DB2 -tf 批處理文件名

(文件中每一條命令用 ;結(jié)束)

16.自動生成批處理文件

建文本文件:temp.sql

select 'runstats on table DB2.' || tabname || '

with distribution and detailed indexes all;'

 

from syscat.tables where tabschema='DB2' and type='T';

 

DB2 -tf temp.sql>runstats.sql

17.自動生成建表(視圖)語句

在服務(wù)器上:C:sqllibmisc目錄中

DB2 connect to o_yd user DB2 using pwd

DB2look -d o_yd -u DB2 -e -p -c c:o_yd.txt

DB2數(shù)據(jù)庫在linux相關(guān)指令之18.其他命令

grant dbadm on database to user bb

19select * from czyxx fetch first 1 rows only

20DB2look -d ylbx -u DB2admin -w -asd -a -e -o a.txt21. 顯示當前用戶所有表

list tables

22.列出所有的系統(tǒng)表

list tables for system

23.查看表結(jié)構(gòu)

DB2 describe select * from user.tables

【編輯推薦】

  1. DB2 dart恢復(fù)數(shù)據(jù)的操作步驟與應(yīng)用代碼
  2. DB2件系統(tǒng)已滿的不再是你的心病
  3. DB2 CMO安裝7.1.2.6補丁之后會出現(xiàn)的錯誤
  4. IBM DB2數(shù)據(jù)庫新手必看的基礎(chǔ)知識有哪些?
  5. 安裝DB2 Content Manager8.3出現(xiàn)144錯誤代碼

 

 

 

責任編輯:佚名 來源: 比特網(wǎng)
相關(guān)推薦

2010-08-13 09:18:30

DB2數(shù)據(jù)庫遷移

2009-06-24 09:19:25

Linux

2009-07-06 00:36:19

DB2基本操作

2010-08-16 13:25:41

DB2數(shù)據(jù)庫操作

2010-08-11 11:13:27

DB2 pe

2010-08-02 09:10:45

JDBC連接DB2

2010-08-11 16:37:47

DB2數(shù)據(jù)庫

2010-09-07 11:23:46

手動安裝DB2

2010-08-20 13:17:50

DB2數(shù)據(jù)庫分區(qū)管理

2010-08-05 16:19:06

DB2建立數(shù)據(jù)庫分區(qū)

2011-05-16 14:42:12

DB2數(shù)據(jù)庫實用操作

2010-08-17 16:04:29

DB2數(shù)據(jù)庫

2010-08-16 14:45:15

DB2數(shù)據(jù)庫

2010-08-03 10:41:14

執(zhí)行DB2數(shù)據(jù)庫

2010-08-10 11:27:06

DB2 個人版

2011-08-18 19:10:27

DB2數(shù)據(jù)庫命令

2010-08-12 14:18:50

DB2數(shù)據(jù)庫備份

2010-09-06 08:52:25

DB2數(shù)據(jù)庫性能

2010-08-12 09:49:51

優(yōu)化DB2數(shù)據(jù)庫備份

2010-08-16 13:36:11

連接DB2數(shù)據(jù)庫
點贊
收藏

51CTO技術(shù)棧公眾號

主站蜘蛛池模板: 香蕉久久av | 国产91亚洲精品一区二区三区 | 人人干人人玩 | 亚洲成人第一页 | 亚洲精品视频一区二区三区 | 在线观看欧美日韩视频 | 日韩视频免费 | 99色在线视频 | 亚洲国产一区二区视频 | 成人国产精品免费观看 | 国产一区二区三区在线视频 | 欧美日韩国产一区二区三区 | 成人免费观看视频 | a在线视频 | 黑人精品 | www.黄色片视频 | 国产熟熟 | 国产亚洲精品久久午夜玫瑰园 | 日韩中文字幕视频 | 久久区二区 | 国产精品久久久久久久久久久久 | 免费在线观看成人 | 欧美电影网 | 国产精品久久久久久婷婷天堂 | 久久久久国产一区二区三区 | 亚洲成人av一区二区 | 成人黄色在线 | 国产黄色大片在线观看 | 精品美女| 黄色中文字幕 | 一区二区av | 国产我和子的乱视频网站 | 久久久久久中文字幕 | 成年人在线观看 | 国产一级一级毛片 | 国产激情在线播放 | 久久成人免费观看 | 国产免费一区二区三区 | 亚洲精品久久久久国产 | 日韩中文一区 | 一级a性色生活片久久毛片 一级特黄a大片 |