ubuntu import mysql database code example

Example 1: linux command line import mysql database

# if your database is not locally hosted
mysql -u username -p -h dbhost dbname < filename.sql

Example 2: how to import database in mysql by cmd

mysql -u username -p database_name < file.sql

Example 3: import file mysql terminal

mysql -u<username> -p<password> databaseName < /path/fileName.sql

Example 4: how to import database in mysql command line in ubuntu dbeaver

//go to the DB-Connection, create a new DB
//Right-Click on this DB, Choose Tools > Import. Than choose the .sql-file.

Tags:

Sql Example