About 104,000 results
Open links in new tab
  1. Create a new database with MySQL Workbench - Stack Overflow

    Mar 4, 2016 · 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 …

  2. 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 …

  3. 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 …

  4. database - Create mysql table directly from CSV file using the CSV ...

    Apr 4, 2012 · 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 …

  5. Create MySQL Database with .SQL File - Stack Overflow

    May 26, 2012 · 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 …

  6. mysql - Error Code: 1007. Can't create database 'CustomerDataService ...

    Oct 7, 2022 · 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 …

  7. How to generate the whole database script in MySQL Workbench?

    Dec 29, 2015 · 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 …

  8. 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...

  9. 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 …

  10. MySQL Workbench - How to clone a database on the same server with ...

    Mar 5, 2019 · 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 …