標籤:mysql
MySQL Study之--MySQL管理工具sqlyog
SQLyog 是一個便於使用的、快速而簡潔的圖形化管理MYSQL資料庫的工具,它能夠在任何地點有效地管理你的資料庫!
sqlyog可以串連到mysql主機、http管道、ssh隧道以及ssl加密。它是一款功能強大的MYSQL資料庫管理工具,內建多個進階工具,可以匯入外部資料,SQL調度器和報告工具嚮導會引導您通過若干步驟調度查詢的執行,結果可以發送給多個接收者,您還可以使用該功能執行例如 ANALYZE, REPAIR等維護查詢。可視化的資料比較可以讓你比較兩個資料庫的資料和合并變動的步驟。
SQLyog的資料庫同步精靈將指導您完成兩個資料庫之間的資料同步步驟,也將協助您排程資料庫同步過程。工作檔案儲存體了此任務的配置。您可以在今後使用工作檔案來運行此任務。 計劃備份嚮導將引導您按照步驟安排匯出SQL 資料,您可以利用該安裝嚮導將匯出的資料產生一個SQL檔案或多個檔案。
一、sqlyog的安裝
大家可以從網上去下載破解版來使用650) this.width=650;" style="border-bottom:medium none;border-left:medium none;border-top:medium none;border-right:medium none;" alt="微笑" src="http://static.blog.csdn.net/xheditor/xheditor_emot/default/smile.gif" />
1、安裝
650) this.width=650;" style="border-bottom:medium none;border-left:medium none;border-top:medium none;border-right:medium none;" src="http://img.blog.csdn.net/20150814172732020?watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQv/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/Center" />
2、串連資料庫
在資料庫端授權:
[[email protected] ~]# mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.6.25-73.1 Percona Server (GPL), Release 73.1, Revision 07b797f
Copyright (c) 2009-2015 Percona LLC and/or its affiliates
Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement.
mysql> select version();
+-------------+
| version() |
+-------------+
| 5.6.25-73.1 |
+-------------+
1 row in set (0.00 sec)
mysql> grant all on *.* to ‘root‘@‘192.168.8.254‘ identified by ‘oracle‘;
Query OK, 0 rows affected (0.01 sec)
650) this.width=650;" style="border-bottom:medium none;border-left:medium none;border-top:medium none;border-right:medium none;" src="http://img.blog.csdn.net/20150814173057900?watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQv/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/Center" />
二、sqlyog使用
650) this.width=650;" style="border-bottom:medium none;border-left:medium none;border-top:medium none;border-right:medium none;" src="http://img.blog.csdn.net/20150814173209616?watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQv/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/Center" />
資料庫管理
650) this.width=650;" style="border-bottom:medium none;border-left:medium none;border-top:medium none;border-right:medium none;" src="http://img.blog.csdn.net/20150814173247815?watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQv/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/Center" />
預存程序管理
650) this.width=650;" style="border-bottom:medium none;border-left:medium none;border-top:medium none;border-right:medium none;" src="http://img.blog.csdn.net/20150814173318578?watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQv/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/Center" />
表管理
sqlyog還有更多的功能,比如備份等,大家可以安裝使用,更多的挖掘和發揮它強大的功能!650) this.width=650;" style="border-bottom:medium none;border-left:medium none;border-top:medium none;border-right:medium none;" alt="微笑" src="http://static.blog.csdn.net/xheditor/xheditor_emot/default/smile.gif" />
本文出自 “天涯客的blog” 部落格,請務必保留此出處http://tiany.blog.51cto.com/513694/1684744
MySQL Study之--MySQL管理工具sqlyog