目錄
Copying Data from One MySQL Database to Another
SQL Statement
mysqldump
phpMyAdmin
Importing Data from Other Databases
MySQL Workbench
Navicat Premium
Setting up SQLite
Connecting To your Databases
Create the Applicant MySQL Table
Import the Applicants Table from MySQL to SQLite
Saving Data to a Text File
Saving Import Settings
Conclusion
首頁 資料庫 mysql教程 Importing Into MySQL from Other Databases_MySQL

Importing Into MySQL from Other Databases_MySQL

Jun 01, 2016 pm 01:06 PM

Your data may originate from many sources, from an application, atom feed, or even from another database. In the first two cases, you have application code and/or stored procedures processing the data; importing directly from another Database Management System (DBMS) can be accomplished using a variety of tools from command line utilities to professional grade DBMS management software.  The tool(s) that you employ will depend largely on the import source(s) and target(s). As we will see here today, the easiest data transfers involve databases of the same type (i.e. MySQL to MySQL) that reside on the same server.  Conversely, databases of different types are far more challenging to work with because different vendors each have their own proprietary tools and SQL extensions, making it unfeasible to achieve a seamless import process.  Thankfully, there are tools that can abstract each vendor’s particular language so that data may be transferred between databases without being an expert in any one of them.

Copying Data from One MySQL Database to Another

Whatever tools you use to manage your MySQL database(s), if you can execute an SQL statement, then you can copy data from one table into another so long as both databases reside on the same server.  For database migrations between servers, there are tools that have cropped up over the years to help with those.

SQL Statement

Under the best of circumstances, your databases both reside on the same network – perhaps even on the same server.  Assuming that you can connect to both at the same time, that would allow you to SELECT from one and INSERT into the other.  The syntax for that particular type of statement appends a SELECT clause to the INSERT:

insert into destination_database.destination_table (field1, field2, ...) select field1, field2, ... from source_database.source_table
登入後複製

Here’s a statement that copies all of the data from one MySQL database table to another:

INSERT INTO navicat_imports_db.applicants (first_name, id, last_name)SELECT first_name, id, last_name FROM test.applicants
登入後複製

mysqldump

Copying data one table at a time as we did above can become a tedious process. For transferring several tables at once, the mysqldump command line tool may be utilized to create .sql files that may then be read and executed on the destination database.

First, the following command is executed on the source database to dump its contents to a file:

mysqldump -u [username] -p [database_name] > [dumpfilename.sql]
登入後複製

A similar command is run on the target database to import the data:

mysql -u [username] -p [database_name] <p>SQL files are an ideal transfer vehicle because they can create database objects as well as populate data.</p><h3 id="phpMyAdmin">phpMyAdmin</h3><p>For online databases, many web hosts offer phpMyAdmin to manage your MySQL databases. To migrate a database, select it in the left column list, click the Export link, and save the database to a file. Then on the new server, select the target DB in the left column, click the Import link, and choose the file you just exported.  It`s a lot like running mysqldump, but from a GUI.</p><h2 id="Importing-Data-from-Other-Databases">Importing Data from Other Databases</h2><p>For importing data from other (i.e. non-MySQL) databases, you can either find a utility that generates .sql or XML files that you can then import into your MySQL database or you can use a database management system that has the capacity to connect to multiple heterogeneous database servers at once. We’re going to look at two such products.</p><h3 id="MySQL-Workbench">MySQL Workbench</h3><p> MySQL`s free Workbench application supports migrations from Microsoft SQL Server, PostgreSQL, Sybase ASE, Sybase SQL Anywhere, SQLite, and others.  Much more than a migration utility, it also includes features like server health monitoring and SQL data modeling.  Just be aware that many users have complained about MySQL Workbench being slow and sluggish (and sometimes crashing) while merely typing queries.  The user interface is considered to be clunky and unintuitive as well.  But most importantly, Oracle has not been keen on fixing any outstanding bugs to make this tool better since their primary focus is on the income generating behemoth that is the Oracle flagship DBMS. </p><h3 id="Navicat-Premium">Navicat Premium</h3><p>For the management of multiple databases in a commercial environment, Navicat Premium is a far more robust solution. It`s geared towards database administrators and developers of small to medium sized businesses.  Its best feature is that it allows you to connect to multiple databases simultaneously as well as migrate data between them in a seamless and consistent way.  It also supports other database objects including Stored Procedures, Events, Triggers, Functions, and Views.  Supported databases include MySQL, MariaDB, SQL Server, Oracle, PostgreSQL, and SQLite, among others.</p><p> The trial version of Navicat Premium for MySQL may be downloaded from the company’s website .  The 30-day trial version of the software is fully functional and identical to the full version so you can get the full impression of all its features.  Moreover, registering with PremiumSoft via the location 3 links gives you free email support during the 30-day trial. </p><p>After you’ve downloaded the installation program, launch it and follow the instructions on each screen of the wizard to complete the installation.</p><p>For the remainder of this article, I’m going to demonstrate how to use the Navicat Database Admin Tool to acquire data from an SQLite database. SQLite is well known for its zero-configuration, which means no complex setup is needed!</p><h2 id="Setting-up-SQLite">Setting up SQLite</h2><ol start="1" type="1"> <li> <strong>Download the files</strong> <br> Go to the SQLite download page , and download the appropriate files for your operating system.  For Windows, you will need the sqlite-shell-win32-*.zip and sqlite-dll-win32-*.zip zipped files.  For Linux, download sqlite-autoconf-*.tar.gz from source code section.  For Max OS X, download sqlite-shell-osx-x86-3080500.zip and te-analyzer-osx-x86-3080500.zip precompiled binaries. </li> <li> <strong>Unpack to a directory</strong> </li> <ol start="1" type="a">
<li> In Windows, Create a folder such as <em>C:/>sqlite</em> and unzip the two zipped files in this folder, which will extract sqlite3.def, sqlite3.dll and sqlite3.exe files. Add the new folder to your PATH environment variable.  <em>Tip: save yourself some trouble by unpacking them to C:/WINDOWS/system32 or any other directory that is already in your PATH.</em>   </li>
<li>Enter the following commands on Linux:</li> </ol>
</ol><pre class="brush:php;toolbar:false">$tar xvfz sqlite-autoconf-3071502.tar.gz			$cd sqlite-autoconf-3071502			$./configure --prefix=/usr/local			$make			$make install
登入後複製
    1. SQLite comes pre-installed on Mac OS Leopard or later, but you can update it if you need to, using Homebrew .
  1. Start up the Database Server


    At the shell or DOS prompt, enter “sqlite3” followed by the database name of “applicants_copy.db”.  That will start up the database server, create the new schema, and set it as the working schema.  You should see the version information and sqlite> prompt:
    C:/sqlite>sqlite3	applicants_copy.db	SQLite version 3.8.5 2014-06-04 14:06:34	Enter ".help" for usage hints.	Enter SQL statements terminated with a ";"	sqlite>
    登入後複製

Connecting To your Databases

To start working with your source and target databases, you must establish a connection to them using the connection manager. Let’s begin with MySQL.  In Navicat Premium:

  1. Click the Connection button on the far top-left of the application window and select MySQL from the dropdown menu:

    Connection Menu Figure 1: Connection Menu

  1. On the New Connection screen:
    1. Give your connection a good descriptive name.
    2. By default, the MySQL server listens for connections on port 3306.  Don’t change this unless you need to.
    3. Supply credentials for an account that possesses table modification rights.
    4. You can verify your information by clicking the Test Connection button. If it comes back with a “Connection successful!” message, you can either go to another tab to enter more specialized connection information or simply hit the OK button to save your info.

The New Connection Dialog Figure 2: The New Connection Dialog

  1. To use your credentials to establish a connection to your database, either select File > Open Connection or right-click on your connection in the list under the Connection button and select Open Connection from the popup menu:

Open Connection Command

Figure 3: Open Connection Command

That will give you access to all the databases running on that server.

  1. Once again, access the Connection dropdown menu on the far top-left of the application window and select SQLite from the list.
  2. That will open the New Connection dialog specific to SQLite.  The Connection Name field is the only one that it has in common with the MySQL connection properties. SQLite is file-based, so we can open an existing one or create a new version 2 or 3 database.  Since we did create a new database at the command prompt, there should be a file under the SQLite root directory.

SQLite - New Connection Dialog

Figure 4: SQLite - New Connection Dialog

  1. Click OK to close the dialog and open the connection. You should now see the Applicants Copy database in the Connections list.
  2. Connect to the Applicants Copy database. Tip: Besides the methods mentioned above in point 2, you can also open a database connection by double-clicking it in the Connections list.

Create the Applicant MySQL Table

Execute the following SQL statements in MySQL to create and populate a table called “applicants”.

DROP TABLE IF EXISTS `applicants`; CREATE TABLE `applicants` ( `id` int(11) NOT NULL, `last_name` varchar(100) NOT NULL, `first_name` varchar(100) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; INSERT INTO `applicants` VALUES ('1', 'Gravelle', 'Rob'); INSERT INTO `applicants` VALUES ('2', 'Bundy', 'Al'); INSERT INTO `applicants` VALUES ('3', 'Richard', 'Little');
登入後複製

Import the Applicants Table from MySQL to SQLite

Follow these steps in Navicat Premium to migrate the applicants table from MySQL into the SQLite database:

  1. Select Tools > Data Transfer... from the main menu to launch the Data Transfer wizard.
  2. On the General tab of the Data Transfer dialog, begin by selecting the Connection and Database of the data source.  That will populate the Database Objects tree with all of the Tables, Views, Procedures, Functions, and Events that you can choose from.  But note that objects that do not exist in the database cannot be selected.  Tip: Selecting the Connection and Database in the Connections list before launching the Data Transfer wizard will automatically populate them in the dialog.
  3. Check the box beside the applicants table to import it.
  4. Select the Applicants Copy SQLite Connection as the Target for the import.  If you have not explicitly added databases to the connection using the SQLite ATTACH DATABASE statement, you will only have one database called “main”.

Data Transfer Dialog - General Tab Figure 5: Data Transfer Dialog - General Tab

Saving Data to a Text File

Selecting the File radio button produces an SQL file for a given DBMS.  It’s not required but helpful to see what kind of SQL statements are being created behind the scenes.

Data Transfer Dialog with File Target Figure 6: Data Transfer Dialog with File Target

  1. Set advanced options.

The Advanced tab contains additional options that pertain to the target database type selected.  For example, the following options would not appear for transfers to SQLite: Lock source tables, Lock target tables, Use extended insert statements, Use delayed insert statements, Run multiple insert statements, and Create target database/schema.

Here is the full list of possible attributes:

    • Create tables
      Creates tables in the target database and/or schema if required.
    • Include indexes
      Imports indexes on the table.
    • Include foreign key constraints  
      Imports foreign keys on the table.
    • Convert object name to
      Performs a transformation on object names by converting them to Lower case or Upper case during the import process.
    • Insert records  
      Transfers all records to be to the destination database and/or schema.  Conversely, leaving this option unchecked will not add any data to the destination database and/or schema.
    • Lock source tables
      Locks the tables in the source database and/or schema so that update on the table is not allowed once the data transfer has begun.
    • Lock target tables
      Locks the tables in the target database and/or schema during the data transfer process so that no other rows may be appended.
    • Use transaction
      Check this option to use transactions during the data transfer process.
    • Rows may be added using either complete or extended insert statements.
      The Use complete insert statements

      option inserts records using complete insert syntax:

      Example:

      INSERT INTO `applicants` (`id`, `last_name`, `first_name`) VALUES ('1', 'Gravelle', 'Rob');INSERT INTO `applicants` (`id`, `last_name`, `first_name`) VALUES ('2', 'Bundy', 'Al');INSERT INTO `applicants` (`id`, `last_name`, `first_name`) VALUES ('3', 'Richard', 'Little');
      登入後複製
    • The Use extended insert statements 

      option uses the shorter extended insert syntax:

      Example:

INSERT INTO `users` VALUES ('1', 'Gravelle', 'Rob'), ('2', 'Bundy', 'Al'), ('3', 'Richard', 'Little');
登入後複製
    • Use delayed insert statements

      Inserts records using  DELAYED  insert SQL statements such as:

INSERT DELAYED INTO `users` VALUES ('1', 'Gravelle', 'Rob');INSERT DELAYED INTO `users` VALUES ('2', 'Bundy', 'Al');INSERT DELAYED INTO `users` VALUES ('3', 'Richard', 'Little');
登入後複製
  • Run multiple insert statements
    Makes the data transfer process faster by running multiple insert statements in each execution.
  • Use hexadecimal format for BLOB 
    Inserts BLOB data in hexadecimal format.
  • Continue on error
    Ignores errors that are encountered during the transfer process so that errors on one record won’t cause the entire import process to be aborted.
  • Drop target objects before create
    If database objects already exist in the target database and/or schema, the existing objects will be deleted before the new one is created.
  • Create target database/schema if not exist
    Creates a new database/schema if the database/schema specified in target server does not exist.

Data Transfer Dialog - Advanced Tab for SQLite Figure 7: Data Transfer Dialog - Advanced Tab for SQLite

  1. Click the Start button to perform the import. 

    Progress will be relayed on the Message Log tab.

Data Transfer Dialog - Message Log Tab Figure 8: Data Transfer Dialog - Message Log Tab

Saving Import Settings

You can save all of your import settings as a profile using the Save button at the bottom of the dialog on the left-hand side.  All you need to do is supply a profile name:

Save Data Transfer Profile Dialog Figure 9: Save Data Transfer Profile Dialog

The profile name will then appear in the list on the Profiles tab so that next time you open the Data Transfer wizard you don’t have to re-enter them from scratch. Just select the saved profile and click on the Load button to repopulate all of your import settings. The Profiles tab also has a Delete button to remove profiles.

Data Transfer Dialog - Profiles Tab Figure 10: Data Transfer Dialog - Profiles Tab

  1. Click the Close button to dismiss the Data Transfer dialog and return to the main application.
  2. Refreshing the schema list using the F5 key should now show the new applicants table in the main database of the SQLite Applicants Copy schema.

Imported applicants Table in SQLite Database Figure 11: Imported applicants Table in SQLite Database

Conclusion

There are a variety of ways to import data into your MySQL databases, from command line utilities to professional grade GUI applications like Navicat Premium.  Which you decide to go with ultimately depends on the size of your business. A home-made WordPress blog likely won’t be migrating data on the same scale as a mid-sized corporation.  That being said, a tool like Navicat Premium isn’t out of reach to smaller users because there are non-commercial licenses available for all three of the big supported operating systems. The Non-Commercial Edition for Windows is $299.00 USD compared with $699.00 USD for the commercial one.  For Mac (version 11) and Linux (version 11), the non-commercial license sells for $299.00 USD as well, while the commercial license goes for $599.00 USD.

See all articles by Rob Gravelle

本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn

熱AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Clothoff.io

Clothoff.io

AI脫衣器

Video Face Swap

Video Face Swap

使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱工具

記事本++7.3.1

記事本++7.3.1

好用且免費的程式碼編輯器

SublimeText3漢化版

SublimeText3漢化版

中文版,非常好用

禪工作室 13.0.1

禪工作室 13.0.1

強大的PHP整合開發環境

Dreamweaver CS6

Dreamweaver CS6

視覺化網頁開發工具

SublimeText3 Mac版

SublimeText3 Mac版

神級程式碼編輯軟體(SublimeText3)

熱門話題

Java教學
1663
14
CakePHP 教程
1420
52
Laravel 教程
1313
25
PHP教程
1266
29
C# 教程
1239
24
與MySQL中使用索引相比,全表掃描何時可以更快? 與MySQL中使用索引相比,全表掃描何時可以更快? Apr 09, 2025 am 12:05 AM

全表掃描在MySQL中可能比使用索引更快,具體情況包括:1)數據量較小時;2)查詢返回大量數據時;3)索引列不具備高選擇性時;4)複雜查詢時。通過分析查詢計劃、優化索引、避免過度索引和定期維護表,可以在實際應用中做出最優選擇。

可以在 Windows 7 上安裝 mysql 嗎 可以在 Windows 7 上安裝 mysql 嗎 Apr 08, 2025 pm 03:21 PM

是的,可以在 Windows 7 上安裝 MySQL,雖然微軟已停止支持 Windows 7,但 MySQL 仍兼容它。不過,安裝過程中需要注意以下幾點:下載適用於 Windows 的 MySQL 安裝程序。選擇合適的 MySQL 版本(社區版或企業版)。安裝過程中選擇適當的安裝目錄和字符集。設置 root 用戶密碼,並妥善保管。連接數據庫進行測試。注意 Windows 7 上的兼容性問題和安全性問題,建議升級到受支持的操作系統。

mysql:簡單的概念,用於輕鬆學習 mysql:簡單的概念,用於輕鬆學習 Apr 10, 2025 am 09:29 AM

MySQL是一個開源的關係型數據庫管理系統。 1)創建數據庫和表:使用CREATEDATABASE和CREATETABLE命令。 2)基本操作:INSERT、UPDATE、DELETE和SELECT。 3)高級操作:JOIN、子查詢和事務處理。 4)調試技巧:檢查語法、數據類型和權限。 5)優化建議:使用索引、避免SELECT*和使用事務。

mysql 和 mariadb 可以共存嗎 mysql 和 mariadb 可以共存嗎 Apr 08, 2025 pm 02:27 PM

MySQL 和 MariaDB 可以共存,但需要謹慎配置。關鍵在於為每個數據庫分配不同的端口號和數據目錄,並調整內存分配和緩存大小等參數。連接池、應用程序配置和版本差異也需要考慮,需要仔細測試和規劃以避免陷阱。在資源有限的情況下,同時運行兩個數據庫可能會導致性能問題。

Bangla 部分模型檢索中的 Laravel Eloquent ORM) Bangla 部分模型檢索中的 Laravel Eloquent ORM) Apr 08, 2025 pm 02:06 PM

LaravelEloquent模型檢索:輕鬆獲取數據庫數據EloquentORM提供了簡潔易懂的方式來操作數據庫。本文將詳細介紹各種Eloquent模型檢索技巧,助您高效地從數據庫中獲取數據。 1.獲取所有記錄使用all()方法可以獲取數據庫表中的所有記錄:useApp\Models\Post;$posts=Post::all();這將返回一個集合(Collection)。您可以使用foreach循環或其他集合方法訪問數據:foreach($postsas$post){echo$post->

RDS MySQL 與 Redshift 零 ETL 集成 RDS MySQL 與 Redshift 零 ETL 集成 Apr 08, 2025 pm 07:06 PM

數據集成簡化:AmazonRDSMySQL與Redshift的零ETL集成高效的數據集成是數據驅動型組織的核心。傳統的ETL(提取、轉換、加載)流程複雜且耗時,尤其是在將數據庫(例如AmazonRDSMySQL)與數據倉庫(例如Redshift)集成時。然而,AWS提供的零ETL集成方案徹底改變了這一現狀,為從RDSMySQL到Redshift的數據遷移提供了簡化、近乎實時的解決方案。本文將深入探討RDSMySQL零ETL與Redshift集成,闡述其工作原理以及為數據工程師和開發者帶來的優勢。

mysql用戶和數據庫的關係 mysql用戶和數據庫的關係 Apr 08, 2025 pm 07:15 PM

MySQL 數據庫中,用戶和數據庫的關係通過權限和表定義。用戶擁有用戶名和密碼,用於訪問數據庫。權限通過 GRANT 命令授予,而表由 CREATE TABLE 命令創建。要建立用戶和數據庫之間的關係,需創建數據庫、創建用戶,然後授予權限。

MySQL:初學者的數據管理易用性 MySQL:初學者的數據管理易用性 Apr 09, 2025 am 12:07 AM

MySQL適合初學者使用,因為它安裝簡單、功能強大且易於管理數據。 1.安裝和配置簡單,適用於多種操作系統。 2.支持基本操作如創建數據庫和表、插入、查詢、更新和刪除數據。 3.提供高級功能如JOIN操作和子查詢。 4.可以通過索引、查詢優化和分錶分區來提升性能。 5.支持備份、恢復和安全措施,確保數據的安全和一致性。

See all articles