色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

mysql左側欄不小心刪了

錢淋西1年前8瀏覽0評論

今天小編在操作MySQL時不小心刪了左側欄,導致無法查看之前的數據庫表和數據,這可真是個讓人頭疼的問題。經過一番探索和嘗試,小編總結出了以下解決方案。

首先,打開MySQL客戶端后點擊“View”選項卡,打開“Panel”子菜單,勾選左下角的“Show Sidebar”選項,即可重新讓左側欄顯示出來。

1. 點擊View
2. 點擊Panels
3. 勾選Show Sidebar

如果出現了“Panel not available”(面板不可用)的提示,說明MySQL客戶端環境的設置與當前MySQL版本不兼容,需手動對MySQL配置文件進行修改。

對于Windows操作系統,打開“MySQL安裝目錄\my.ini”文件,找到以下內容:

# Remove leading # and set to the amount of RAM for the most important data
# cache in MySQL. Start at 70% of total RAM for dedicated server, else 10%.
# innodb_buffer_pool_size = 128M

將此段注釋掉,添加以下內容:

[mysqld]
open_files_limit=8192
skip-external-locking
key_buffer_size = 16M
max_allowed_packet = 1M
table_open_cache = 64
sort_buffer_size = 512K
net_buffer_length = 8K
read_buffer_size = 256K
read_rnd_buffer_size = 512K
myisam_sort_buffer_size = 8M
# Add the following options if you want robustness and security
# instead of absolute performance
tmp_table_size=16M
max_heap_table_size=16M
thread_cache_size=4
query_cache_type=1
query_cache_size=8M
thread_concurrency=2

保存后重啟MySQL服務即可。

通過以上方法,小編成功地解決了MySQL左側欄不小心刪了的問題。希望對大家有所幫助!