如何安裝db2,可參考此篇文章:1.檢視所有例項列表【資料庫】centos 7 安裝db2 express-c 詳細教學
[root@localhost desktop]# db2ilist
db2inst
2.檢視當前例項
[root@localhost desktop]# db2 get instance
the current database manager instance is: db2inst
3.列出所有資料庫
[db2inst@localhost desktop]$ db2 list db directory
system database directory
number of entries in the directory =
1 database 1 entry:
database alias =
sample
database name =
sample
local database directory =
/home/db2inst
database release level =
14.00
comment =
directory entry type = indirect
catalog database partition number =
0 alternate server hostname =
alternate server port number =
4.連線資料庫
[db2inst@localhost expc]$ db2 connect to sample
database connection information
database server =
db2/
linuxx8664
11.1
.4.4
sql authorization id
=db2inst
local database alias =
sample
1.列出所有表名
[db2inst@localhost ~
]$ db2 list tables
2.檢視資料庫表空間分配狀況
[db2inst@localhost ~
]$ db2 list tablespaces show detail
3.列出所有資料庫
[db2inst@localhost ~
]$ db2 list db directory
4.列出所有啟動的資料庫
[db2inst@localhost ~
]$ db2 list active databases
5.檢視版本
[db2inst@localhost ~
]$ db2level
1.建立資料庫-指定編碼
[db2inst@localhost ~
]$ db2 create db test using codeset utf-
8 territory cn
2.刪除資料庫
[db2inst@localhost ~
]$ db2 drop database test
db20000i the drop
database command completed successfully.
1.啟動db2
[db2inst@localhost ~
]$ db2start
2.關閉db2例項上的所有應用
db20000i the force
db21024i this command is asynchronous and may not be effective immediately.
3.關閉db2
[db2inst@localhost desktop]$ db2stop
sql1064n
db2stop processing was successful.
mongodb資料庫常用指令
詳細安裝看我文章 開啟在bin目錄下mongo.exe來運算元據庫 常用命令 show dbs 檢視所有庫 use blog 使用指定的庫 show collections 檢視所有的文件 db.表名.find 查詢指定文件的資料 db.表名.insert 插入資料 3.將mongodb服務加入到w...
資料庫索引 常用指令
create unique bitmap index index name unique表示唯一索引 on table name column1 asc desc column2 bitmap,建立位圖索引 asc desc express tablespace tablespace name pc...
linux資料庫常用指令
linux資料庫環境搭建好之後,我們就可以建立資料庫了,如果不是 首先我們來建立乙個資料庫 使用指令sqlite3 mysql 指令1 建立 create table 表名 資料型別 約束條件 create table mysql id integer primary key autoincreme...