隨手寫下一些操作
mysql現在已提供什麼儲存引擎:
mysql> show engines;
mysql當前預設的儲存引擎:
mysql> show variables like '%storage_engine%';
某個錶用了什麼引擎(在顯示結果裡引數engine後面的就表示該錶當前用的儲存引擎):
mysql> show create table 表名;
如何檢視mysql伺服器上的版本系統函式啊
mysql>select version();
檢視庫檔案存放位置
mariadb > show global variables like "%datadir";
刪除資料庫
drop database ***;
建立資料庫
create database *** character set utf8 collate utf8_bin;
use ***;
source /backup/mysql_backup/***.sql;
mysql檢視 MySQL檢視當前資料庫庫
mysql檢視當前資料庫庫 1 在mysql下檢視當前使用的是哪個資料庫,有三種方式 用select database 語句 mysql select database database test row in set 0.00 sec 從查詢結果中可以看出,當前用的是test資料庫 2 用show...
mysql檢視當前連線
當我們使用c3p0連線池時,肯定想去看看mysql中確認一下連線數,則可以使用一下命令 variable name valuethreads cached 0 mysql管理的執行緒池中還有多少可以被復用的資源 threads connected 152 開啟的連線數 threads created...
檢視當前使用的shell
來自 ps grep awk 實時 不帶引數的ps命令顯示和當前終端有關的程序狀況 變數儲存當前程序的pid ps第四列是程序所使用的命令,如果是shell,那麼顯示shell名,比如sh ksh等 awk 就是只顯示第四列的值 ps 用echo shell可以檢視系統預設的shell 檢視當前發行...