ImportingXML, CSV, Text, andMSExcelFilesintoMySQL_MySQL

Source: Internet
Author: User
Tags table definition mysql gui power bi
ImportingXML, CSV, Text, andMSExcelFilesintoMySQL My most recent articles, Importing XML Data into MySQL Tables Using a Stored ProcedureandEnhance Your MySQL XML Import Procedures using Prepared Statements, stored ed how capable stored procedures were in importing XML-formatted data. at the end of those articles, I concluded that as a DIY solution, stored procs are indeed a viable option. for those of you less inclined to write and maintain your own import code, there are tools that can markedly simplify the importing of data from varous sources. in today's article, I'm going to demonstrate how to use the Navicat Database Admin Tool to acquire data from XML ,. csv ,. txt, and Excel files.

Why Navicat?

In previous articles I employed a free MySQL GUI front-end called HeidiSQL. it was a great product, but, as some readers were apt to point out, it's only available on Windows platforms. in an effort to meet the needs of the majority of readers, I opted to go with a product that runs on all the major OSes, namely the big three: Windows, Mac, and Linux.

Navicat is also a well-maintained product with an extremely large user base. both those traits mean that bugs will be stamped out very quickly. not that there wocould be your bugs left to find; at version 11.0.17, it's a highly stable product at this point.

Note that this is a required cial product and requires a license after the free trial of 30 days. by that time you shoshould have a much better idea whether or not it's something that you want to invest in or not.

Getting StartedRelated Articles
  • Getting Started with Microsoft Power Query for Excel
  • Understanding Microsoft Power BI-Self Service Solutions

The trial version of Navicat for MySQL may be downloaded from thecompany's website. the 30-day trial version of the software is identical to the full Enterprise Edition so you can get the full impression of all its features. moreover, registering with PremiumSoft viaLocation 3Links gives you free email support during the 30-day trial.

After you 've downloaded the installation program, launch it and follow the instructions on each screen of the wizard to complete the installation.

Connecting To the Database

To start working with your MySQL database, you must first establish a connection to it using the connection manager. To do that:

  1. Click the Connection button on the far top-left of the application window and select MySQL from the dropdown menu.
  2. 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.
    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 information.

Figure 1: The New Connection Dialog

  1. To use your credentials to establish a connection to your database, either selectFile> Open ConnectionOr right-click on your connection in the list under the Connection button and selectOpen ConnectionFrom the popup menu.

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

  1. Double-click the database that you want to work with. You'll know that it's connected by the data store icon, which will turn green:

Figure 2: Selected Database

Alternatively, you can create a completely new database as follows:

  1. Right-click anywhere in the database schema list and selectNew Database...From the popup menu:
  1. In the New Database dialog...
    1. Ascribe a name to your database, such as "navicat_imports_db ".
    2. I like to set the Character set to UTF-8, which is Unicode.
    3. Set the Collation to utf8_unicode_ci. There is a similar entry called utf8_general_ci, but that is an older collation, which is hardly ever used anymore.

Figure 3: The New Database Dialog

  1. Click the OK button to create the new database schema.
Creating the Target Tables

You cocould use the New Table wizard to create the target table, but I'll give you the table definition to make things easier.

  1. Click the large Query button on the main toolbar to bring up the Query commands and then click the New Query button.
  1. Paste the following code into the Query Editor:
DROP TABLE IF EXISTS `menu_items`; CREATE TABLE `menu_items` ( `id` int(11) NOT NULL, `name` varchar(255) CHARACTER SET latin1 DEFAULT NULL, `price` decimal(5,2) DEFAULT NULL, `description` varchar(255) CHARACTER SET latin1 DEFAULT NULL, `calories` smallint(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  1. Click the Run button directly above the Query Editor tab to execute the query and create the new table.
  2. Hit the F5 key to refresh the database schema list and bring up the navicat_imports_db table that we just created.

Figure 4: navicat_imports_db Table

We are now ready to import some data.

Working with XML Data

In keeping with the theme of my last two articles, I'll start with XML.

The XML document that I'll be using today is a sample document of menu items. It contains information about some typical breakfast foods.

 
 
  
   
    Belgian Waffles
   
   
    $5.95
   
   
    Two of our famous Belgian Waffles with plenty of real maple syrup 
   
   
    650
   
  
  
   
    Strawberry Belgian Waffles
   
   
    $7.95
   
   
    Light Belgian waffles covered with strawberries and whipped cream
   
   
    900
   
  
  
   
    Berry-Berry Belgian Waffles
   
   
    $8.95
   
   
    Light Belgian waffles covered with an assortment of fresh berries and whipped cream
   
   
    900
   
  
  
   
    French Toast
   
   
    $4.50
   
   
    Thick slices made from our homemade sourdough bread
   
   
    600
   
  
  
   
    Homestyle Breakfast
   
   
    $6.95
   
   
    Two eggs, bacon or sausage, toast, and our ever-popular hash browns
   
   
    950
   
  
 
The Import Process

In Navicat, imports are accomplished using the Import Wizard. it will guide you through all of the steps based on the type of data source selected. one way to launch the wizard is to right-click on target table and then selectImport WizardFrom the popup menu:

Figure 5: Import Wizard Command

  1. The first screen of the wizard presents a list of file formats to choose from. SelectXML File (*. xml)Radio button and clickNext>Button.

Figure 6: Import Wizard Data Format Screen

  1. On the following screen...
    1. Click the ellipsis (...) Button to browse to the breakfast_menu.xml file on your file system.
    2. From the Encoding dropdown menu, select65001 (UTF-8)As the file Encoding,
    3. ClickNext>:
  2. The next screen is where you choose the tag that identifies each data row.
    1. Select the "food" tag from the dropdown list.
    2. ClickConsider tag attributes as tableField checkbox so that the id attribute will be picked up.
    3. ClickNext>To proceed.
  3. On screen four, you'll find some additional options for the source file including the first and last data rows as well as date & time formats. since we are importing all rows and have no dates, you can clickNext>.
  1. TheTarget TableScreen lets you choose between an existing table or to create a new one based on the imported data fields. since we started the wizard by right-clicking on the target table, it shoshould already be selected. clickNext>.

Figure 7: Import Wizard Target Table Screen

  1. TheField MappingsScreen is where you can map your XML text nodes and/or attributes to their respective target table columns. note that those with matching names will be too red up for you. select the id as the primary key by clicking on the cell dierectly belowPrimary KeyHeader and clickNext>.

Figure 8: Import Wizard Field Mappings Screen

  1. The last describe to make is to choose how records will be appended and/or updated. the first option to Append records will do just fine for us since we are adding all new records. there is also an Advanced button on this screen for setting a few additional options such as using extended insert statements and inserting empty strings instead of Nulls. clickNext>To go to the final screen.

Figure 9: Import Wizard Import Mode and Advanced Properties Dialog

  1. On the eighth and last screen of the Import Wizard, click the Start button to kick off the import process. The results will be displayed in the gray textarea.

Figure 10: Import Wizard Start Screen

Now that you 've gone through all of the steps to setup your import process, you don't have to repeat them every time you want to import some records. you can save it via the Save button. that will allow you to run your import as a Scheduled Job as well.

Figure 11: Scheduled Jobs List

Click the menu_items table to see its contents, which include our imported data.

Figure 12: The menu_items Table with Imported XML Data

At this time Navicat is limited to a single level of XML data. Hopefully, that will be improved upon in an up-coming release.

Importing from Text and CSV files

A Fixed Width text file is a data transfer format that is often used with mainframe data feeds. in a Fixed Width text file, fields are stored in specific positions within each line of data. for example, in each line of the breakfast_menu row structure below,NameField occupies the capacity Ty character positions of 11 through 60 random sive:

_10 chars_ _50 chars_ _10 chars_ _255 chars_ _10 chars_ |||| || id name pricedescription calories

The greatest advantage of the Fixed Width format is that there are no delimiters that coshould appear in the data, as with CSV files.

Follow this procedure to create a Fixed Width file and import its contents into MySQL:

  1. Copy and paste the following data into a file and save it as breakfast_menu.txt.
id name pricedescriptioncalories 1 Belgian Waffles $5.95Two of our famous Belgian Waffles with plenty of real maple syrup 650 2 Strawberry Belgian Waffles$7.95Light Belgian waffles covered with strawberries and whipped cream 900 3 Berry-Berry Belgian Waffles $8.95Light Belgian waffles covered with an assortment of fresh berries and whipped cream 900 4 French Toast$4.50Thick slices made from our homemade sourdough bread 600 5 Homestyle Breakfast $6.95Two eggs, bacon or sausage, toast, and our ever-popular hash browns 950 
  1. To launch the Import Wizard, click the Import button on the main toolbar.
    1. This time, on the first screen of the wizard, select the Text file (*. txt) radio button. although Fixed Width files tend to have. txt extension, other extensions such. dat are also possible. for those, the second item in the file type list contains *. * match all file types.
    2. Select the character encoding that matches your file, e.g .,Current Windows CodepageFor Windows ANSI files.
  1. The third screen of the Import Wizard lets you choose between fixed width and delimited fields. in the case of fixed width fields, you need to identify the field breaks by clicking a Raks with the mouse. don't forget to click after the last field on the right as it needs to know the length of that field as well.

Figure 13: Import Wizard Field Delimiter Screen

  1. On screen four, you can design a row as the field headers as well as set the first and last data rows. it's not a bad idea to enter both if you know the length of the input file.
  2. On screen five, make sure that the menu_items table is selected as the target.
  3. As usual, make sure that the fields on screen six map correctly.
  4. Next, choose an import mode from screen seven and you're ready to kick off the import.
  5. Upon completion, if you take a look at the menu_items table with the imported data you'll notice that the prices have been converted into numbers so that the dollar sign is not supported Ded with the values.

Figure 14: The menu_items Table with Imported Fixed Width Data

Importing CSV Files

The CSV ("Comma Separated Value") file format originated in Microsoft Excel, but has since become a pseudo standard throughout the industry, even among non-Microsoft platforms. as is the case with most exchange formats since XML, CSV files have been relegated to that of legacy format. modern applications that include an export format tend to use XML today.

Here is the breakfast menu data again, this time using the CSV format.

id,name,price,description,calories 1,"Belgian Waffles","$5.95","Two of our famous Belgian Waffles with plenty of real maple syrup",650 2,"Strawberry Belgian Waffles","$7.95","Light Belgian waffles covered with strawberries and whipped cream",900 3,"Berry-Berry Belgian Waffles","$8.95","Light Belgian waffles covered with an assortment of fresh berries and whipped cream",900 4,"French Toast","$4.50","Thick slices made from our homemade sourdough bread",600 5,"Homestyle Breakfast","$6.95","Two eggs, bacon or sausage, toast, and our ever-popular hash browns",950 

The CSV format is a lot more compact than fixed widths because each field only needs to be as long as its content. it's also easier to parse because of the clearly identified delimiter. although the comma is used by convention, really any character may be used. whatever character you do opt for, be extra careful that it does not appear in any of the data because that will wreak havoc on the import Process! In fact, the description for the Homestyle Breakfast above does contain several commas. To get around this, we can either substitute a different delimiter, or enclose all string data within quotes, as I did.

The process for importing CSV files is very similar to text data before t that on screen three, the delimited and fixed width radio buttons are disabled so thatDelimitedIs the only option.

Figure 15: Import Delimiter Screen for CSV Data

Other than that, the two formats are really quite interchangeable.

Importing from MS Excel

Although Excel provides the CSV format for transferring data, Navicat can import directly from Excel.

On the File Type screen of the Import Wizard, notice that there are actually two radio buttons for Excel: one. xls files and one for the newer. xlsx 2007 and later format. choose the one for your version of Excel.

One Excel file may contain in numerous workbooks, so you can import from more than one at a time.

From there, the process is not much different than for any other file type. just make sure that your fields are correctly mapped and that you start from the second row if you have column headers in your data.

Conclusion

For Database Administrators who are not authorized red to write and maintain their own import procedures, Navicat does a good job of importing data from external data sources.

See all articles by Rob Gravelle

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.