Global web icon
stackoverflow.com
https://stackoverflow.com/questions/5515745/create…
Create a new database with MySQL Workbench - Stack Overflow
Being new to MySQL, I have installed the latest version of the MySQL Workbench (5.2.33). I would like to know how you can create a database with this application. In the Overview tab of the SQL edi...
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/9087482/create…
Create a new MySQL database using Workbench - Stack Overflow
Does Workbench even have the capabilities to create a database or is it only for connecting/editing existing databases? If Workbench can't create new databases, what is a simple tool that will? I'm using MySQL Workbench (5.2.36) on Win 7.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/17190083/how-t…
How to take MySQL database backup using MySQL Workbench?
How to take database backup using MySQL Workbench? Can we take backup in the following ways- Backup file (.sql) contains both Create Table statements and Insert into Table Statements Backup file (.sql)
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/9998596/create…
database - Create mysql table directly from CSV file using the CSV ...
35 I'm recommended use MySQL Workbench where is import data. Workbench allows the user to create a new table from a file in CSV or JSON format. It handles table schema and data import in just a few clicks through the wizard. In MySQL Workbench, use the context menu on table list and click Table Data Import Wizard.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/10769344/creat…
Create MySQL Database with .SQL File - Stack Overflow
2) Create a database in your DB in which you want to import this file. 3) From command-prompt/terminal, move to the directory where you have created a "filename.sql". 4) Run the command: mysql -u username -p password database_name < filename.sql. (You can also give the proper path of your file and run this command from anywhere).
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/73990012/error…
mysql - Error Code: 1007. Can't create database 'CustomerDataService ...
CREATE DATABASE IF NOT EXISTS `CustomerDataService`; Chances are that the scriptlet had already been run, and the tables already exist, too, so you may then run into Table already exists errors next.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/4930733/how-to…
How to generate the whole database script in MySQL Workbench?
114 How to generate SQL scripts for your database in Workbench In Workbench Central (the default "Home" tab) connect to your MySQL instance, opening a SQL Editor tab. Click on the SQL Editor tab and select your database from the SCHEMAS list in the Object Browser on the left. From the menu select Database > Reverse Engineer and follow the prompts.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/13255685/expor…
Export DataBase with MySQL Workbench with INSERT statements
I am trying to export the DataBase i have at MySQL Workbench but I am having troubles to generate the INSERT statements on the .sql file. I order to export the data, I do the reverse engineering f...
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/4005409/error-…
Error 1046 No database selected, how to resolve? - Stack Overflow
what happened to me was: create a schema, filled in the name of the database, then it says "fail, no database selected". reopen workbench, i see database that i have just failed to created. Then I choose the database that i have just created, and open a .sql file and run, with both create database and use database statements, it complains "fail no database selected" again. reopen workbench ...
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/54996958/mysql…
MySQL Workbench - How to clone a database on the same server with ...
I am using MYSQL Workbench and I want to clone a database on the same server with different name. It should duplicate the all the tables structure and data into the new database. I know the usual way is probably using data export to generate a sql script of the database and then run the script on the new database but I encounter some issues ...