![]() Join Up! 99841 members and counting! |
|
|||
How to Import Excel, Access or XML Data into MySQL Using Navicat
by kenlin
This article discusses a solution to import MS Excel, MS Access, XML data to local or Remote MySQL databases by using a famous MySQL Admin Tool called Navicat. You can find the information of Navicat at http://www.mysqlstudio.com/detail.php3.
Overview
We very often need to import various data into MySQL databases. This becomes a tough job if we don't have a reliable & easy-to-use MySQL GUI; At times, when I am working on deadlines, this job becomes frustrating and I find myself wishing I had a tool to do this job for me.
Navicat can convert Excel spreadsheets /MS Access to MySQL databases, eliminating time-consuming data entry and the errors that accompany it. It uses a Microsoft Access-like interface and comes with a MySQL server Launcher and comprehensive manual that will help you to get started. It is more than just a simple MySQL admin client, other useful major features include schedule backup, data transfer, import/export wizard, support Foreign Keys, visual query builder, and visual report builder.
Navicat's Database Transfer Tool, is a visual data transfer tool designed for developers who work between different MySQL servers or need to move databases between two MySQL servers.
In Depth
PremiumSoft Navicat enables you to convert your documents (different file types ) into your MySQL databases. Its easy-to-use interface makes it easy to perform the Import/Export action. In Navicat 5.3 version, you can save the process as a profile. With the profile, you can create a schedule for it.
Getting Started
First of all you need to install PremiumSoft Navicat. You can download it from http://www.mysqlstudio.com/shareware.php3. You can connect to the MySQL host where you want to import your data into it. This is quite easy as you only have to give your server details and you will be connected.
After connecting, you should see your databases in left side of Navicat main window.
If you click on database icon, Navicat shows you a list of all of the tables. Select the table that you want to perform Import action.
Please click on Import Wizard button. Import Wizard will be started. Follow the steps of Import Wizard, you should be able to import your MS Excel/Access/XML file into MySQL database.
Tutorial on Import/Export Wizard of Navicat
Import Data to Table Using Import Wizard
Import Wizard Steps:
Export data by using Export Wizard
Other Features of Navicat
Some of the Navicat key features are listed below:
Tips on Setup Connection Between Navicat and Your MySQL Server
Localhost Connection Setting
If you installed MySQL database on your local PC (download here), the default username is "root" and password is empty.
Localhost connection setting is similiar as following :
Host : localhost
Username : root Password : (empty) Port : 3306 (default)
Before you established local connection between Navicat and your local MySQL server, please also use our Launcher program to start your local MySQL server. You could also use another program to start your local MySQL server (Path : C:\mysql\bin\winmysqladmin.exe).
Remote Connection Setting
After MySQL database was installed, it would only allow "localhost" connection by default. Therefore, most server-side scripts program (e.g. phpMyAdmin) can easily connect with the local database in the same server. You could use Telnet or SSH program to manage your remote server because it's localhost connection.
Any client PCs will be blocked by the remote MySQL server until the user privileges has been configured.
Remote connection setting is similiar as following :
Host : IP address of remote MySQL server
Username : Your_username (username is 'root' if you just installed the MySQL server) Password : Your_password (Emtpy value if you just installed the MySQL server) Port : 3306 (default)
NOTE: Navicat would be able to access your remote MySQL server no matter it is running on Linux, Unix, Mac, Windows platform. If you couldn't connect your remote MySQL server via Internet, please visit the Navicat web site for detailed explanation on MySQL Privileges System.
|