1、查詢資料檔案路徑
2、查詢版本
3、允許root使用者遠端連線
4、關閉root使用者遠端連線
5、查詢資料庫的資料量
6、匯入匯出*.sql
7、日誌配置查詢
8、查詢內部程序列表
show processlist;
9、查詢正在使用中的表show
open
tables
where in_use >
0;
10、檢視當前的鎖select
*from information_schema.innodb_locks;
11、檢視定時任務# 查整個mysql的定時任務
select
*from information_schema.events;
12、檢視觸發器# 查當前庫的觸發器
show triggers;
# 查整個mysql的觸發器
select
*from information_schema.triggers;
關於敲了很多遍Symbian的資源檔案
敲了很多遍的series 60的資源檔案,慢慢的找到了下面資源檔案的巧門,series 60 ex resource file include include include include ex.hrh resource rss signatrue resource tbuf r default ...
那些搜過很多遍的python基礎知識
1 索引的使用 loc iloc loc用行列標籤來選擇資料。iloc 根據行數與列數索引。import pandas as pd data pd.dataframe data a b c a 1 4 7b 2 5 8c 3 6 9data.loc 1,b 5data.iloc 1,1 5data....
HDU 4707 最後還是用了BFS。。。
題目大意就是給你乙個連通圖,保證沒有環,讓你計算所有點到點0的距離,如果距離大於d,sum 最後輸出sum的值。一開始被嚇到了,還以為是搜尋樹。後來洗了把臉後發現題目本質還是把所有的點遍歷一遍 就是bfs orz 沒腦子的就直接寫去了。結果第一發記憶體超了。難掩我的震驚之情。orz 題目要求memo...