Quantcast
Channel: MySQL Forums - MySQL Workbench
Viewing all 3736 articles
Browse latest View live

Problems with foreign keys in MySQL (no replies)

$
0
0
Hello!

I am working on a project where I made an extension to the existing database schema design of our project. I decided to let MySQL Workbench create the ER diagram, where I added new tables with relations. The already existing part consisted of a number of tables that have no relations at all. After going through the design with colleagues, I exported the ER data in form of an SQL script by checking the YouTube video and got an SQL file. There was a problem saving the file, so I copied it into the cache and put it into a file. You can see the newly created part attached below.

When running the code, the old tables (the part not included in attachment) runs without problems, but the new tables with foreign keys cannot be created because of the MySQL Error 1215: Cannot add foreign key constraint issue. First, I tried the generated commands of the script one by one using copy/paste to the SQL window of the MySQL database, where I executed them separately, and I found out what I have already written above that the new tables with their relations cause the problem. Although I tried to fix the errors by following the answers on this Stackoverflow question, I failed to get rid of the error.

What I did in the script already is to make all engines InnoDB by replacing the other names that existed, but no avail. The key fields are all of the type INT, and there no ON DELETE SET NULL command. I also changed the CHARACTER SET from latin1 to a coherent utf8 in the SQL script, but now I do not know what to do else to make the generated script run properly on the MySQL database. I also tried to find out details of the error by using SHOW ENGINE INNODB STATUS and looking to the LATEST FOREIGN KEY ERROR section, but I do not have the PROCESS right & have to wait until our admin comes tomorrow.

Have you had a similar problem? What do you suppose me to do next?

Thank you for your help!

Here is the generated script:
-- MySQL Workbench Forward Engineering

SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0;
SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0;
SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='TRADITIONAL,ALLOW_INVALID_DATES';

-- -----------------------------------------------------
-- Schema test_apptest
-- -----------------------------------------------------

-- -----------------------------------------------------
-- Schema test_apptest
-- -----------------------------------------------------
CREATE SCHEMA IF NOT EXISTS `test_apptest` DEFAULT CHARACTER SET latin1 ;
USE `test_apptest` ;

-- […]

-- -----------------------------------------------------
-- Table `test_apptest`.`Countries`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `test_apptest`.`Countries` (
`ID` INT NOT NULL,
`name` VARCHAR(45) NULL,
PRIMARY KEY (`ID`))
ENGINE = InnoDB;


-- -----------------------------------------------------
-- Table `test_apptest`.`States`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `test_apptest`.`States` (
`ID` INT NOT NULL,
`name` VARCHAR(45) NULL,
`Countries_ID` INT NOT NULL,
PRIMARY KEY (`ID`, `Countries_ID`),
INDEX `fk_States_Countries1_idx` (`Countries_ID` ASC),
CONSTRAINT `fk_States_Countries1`
FOREIGN KEY (`Countries_ID`)
REFERENCES `test_apptest`.`Countries` (`ID`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;


-- -----------------------------------------------------
-- Table `test_apptest`.`Addresses`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `test_apptest`.`Addresses` (
`ID` INT NOT NULL AUTO_INCREMENT,
`ZIP` VARCHAR(12) NULL,
`countryID` INT NOT NULL,
`stateID` INT NULL,
`settlement` VARCHAR(64) NOT NULL,
`street` VARCHAR(50) NOT NULL,
`addition` VARCHAR(64) NULL,
`phone` VARCHAR(22) NULL,
`Countries_ID` INT NOT NULL,
`States_ID` INT NOT NULL,
`States_Countries_ID` INT NOT NULL,
PRIMARY KEY (`ID`),
INDEX `fk_Addresses_Countries1_idx` (`Countries_ID` ASC),
INDEX `fk_Addresses_States1_idx` (`States_ID` ASC, `States_Countries_ID` ASC),
CONSTRAINT `fk_Addresses_Countries1`
FOREIGN KEY (`Countries_ID`)
REFERENCES `test_apptest`.`Countries` (`ID`)
ON DELETE NO ACTION
ON UPDATE NO ACTION,
CONSTRAINT `fk_Addresses_States1`
FOREIGN KEY (`States_ID` , `States_Countries_ID`)
REFERENCES `test_apptest`.`States` (`ID` , `Countries_ID`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;


-- -----------------------------------------------------
-- Table `test_apptest`.`Filters`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `test_apptest`.`Filters` (
`ID` INT NOT NULL,
`filter` BLOB NULL,
PRIMARY KEY (`ID`))
ENGINE = InnoDB;


-- -----------------------------------------------------
-- Table `test_apptest`.`Groups`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `test_apptest`.`Groups` (
`ID` INT NOT NULL,
`name` VARCHAR(64) NOT NULL,
`description` VARCHAR(1024) NULL,
`Filters_ID` INT NOT NULL,
PRIMARY KEY (`ID`, `Filters_ID`),
INDEX `fk_Groups_Filters1_idx` (`Filters_ID` ASC),
CONSTRAINT `fk_Groups_Filters1`
FOREIGN KEY (`Filters_ID`)
REFERENCES `test_apptest`.`Filters` (`ID`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;


-- -----------------------------------------------------
-- Table `test_apptest`.`Persons`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `test_apptest`.`Persons` (
`ID` INT NOT NULL,
`username` VARCHAR(255) NOT NULL,
`password` VARCHAR(255) NOT NULL,
`firstName` VARCHAR(255) NOT NULL,
`lastName` VARCHAR(255) NOT NULL,
`eMail` VARCHAR(50) NOT NULL,
`standardAddressID` INT NOT NULL,
`address1ID` INT NULL,
`address2ID` INT NULL,
`phone1` VARCHAR(50) NOT NULL,
`phone2` VARCHAR(50) NULL,
`status` INT NULL,
`publicMail` VARCHAR(255) NULL,
`advisorID` INT NULL,
PRIMARY KEY (`ID`))
ENGINE = InnoDB;


-- -----------------------------------------------------
-- Table `test_apptest`.`Roles`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `test_apptest`.`Roles` (
`ID` INT NOT NULL,
`name` VARCHAR(64) NOT NULL,
`description` VARCHAR(1024) NULL,
PRIMARY KEY (`ID`))
ENGINE = InnoDB;


-- -----------------------------------------------------
-- Table `test_apptest`.`Groups_have_Persons`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `test_apptest`.`Groups_have_Persons` (
`Groups_ID` INT NOT NULL,
`Persons_ID` INT NOT NULL,
PRIMARY KEY (`Groups_ID`, `Persons_ID`),
INDEX `fk_Groups_has_Persons_Persons1_idx` (`Persons_ID` ASC),
INDEX `fk_Groups_has_Persons_Groups1_idx` (`Groups_ID` ASC),
CONSTRAINT `fk_Groups_has_Persons_Groups1`
FOREIGN KEY (`Groups_ID`)
REFERENCES `test_apptest`.`Groups` (`ID`)
ON DELETE NO ACTION
ON UPDATE NO ACTION,
CONSTRAINT `fk_Groups_has_Persons_Persons1`
FOREIGN KEY (`Persons_ID`)
REFERENCES `test_apptest`.`Persons` (`ID`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;


-- -----------------------------------------------------
-- Table `test_apptest`.`Addresses_have_Persons`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `test_apptest`.`Addresses_have_Persons` (
`Addresses_ID` INT NOT NULL,
`Persons_ID` INT NOT NULL,
PRIMARY KEY (`Addresses_ID`, `Persons_ID`),
INDEX `fk_Addresses_has_Persons_Persons1_idx` (`Persons_ID` ASC),
INDEX `fk_Addresses_has_Persons_Addresses1_idx` (`Addresses_ID` ASC),
CONSTRAINT `fk_Addresses_has_Persons_Addresses1`
FOREIGN KEY (`Addresses_ID`)
REFERENCES `test_apptest`.`Addresses` (`ID`)
ON DELETE NO ACTION
ON UPDATE NO ACTION,
CONSTRAINT `fk_Addresses_has_Persons_Persons1`
FOREIGN KEY (`Persons_ID`)
REFERENCES `test_apptest`.`Persons` (`ID`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;


-- -----------------------------------------------------
-- Table `test_apptest`.`Rights`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `test_apptest`.`Rights` (
`ID` INT NOT NULL,
`name` VARCHAR(64) NOT NULL,
`description` VARCHAR(1024) NULL,
PRIMARY KEY (`ID`))
ENGINE = InnoDB;


-- -----------------------------------------------------
-- Table `test_apptest`.`Roles_have_Rights`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `test_apptest`.`Roles_have_Rights` (
`Roles_ID` INT NOT NULL,
`Rights_ID` INT NOT NULL,
PRIMARY KEY (`Roles_ID`, `Rights_ID`),
INDEX `fk_Roles_has_Rights_Rights1_idx` (`Rights_ID` ASC),
INDEX `fk_Roles_has_Rights_Roles1_idx` (`Roles_ID` ASC),
CONSTRAINT `fk_Roles_has_Rights_Roles1`
FOREIGN KEY (`Roles_ID`)
REFERENCES `test_apptest`.`Roles` (`ID`)
ON DELETE NO ACTION
ON UPDATE NO ACTION,
CONSTRAINT `fk_Roles_has_Rights_Rights1`
FOREIGN KEY (`Rights_ID`)
REFERENCES `test_apptest`.`Rights` (`ID`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;


-- -----------------------------------------------------
-- Table `test_apptest`.`Groups_has_Roles`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `test_apptest`.`Groups_has_Roles` (
`Groups_ID` INT NOT NULL,
`Roles_ID` INT NOT NULL,
PRIMARY KEY (`Groups_ID`, `Roles_ID`),
INDEX `fk_Groups_has_Roles_Roles1_idx` (`Roles_ID` ASC),
INDEX `fk_Groups_has_Roles_Groups1_idx` (`Groups_ID` ASC),
CONSTRAINT `fk_Groups_has_Roles_Groups1`
FOREIGN KEY (`Groups_ID`)
REFERENCES `test_apptest`.`Groups` (`ID`)
ON DELETE NO ACTION
ON UPDATE NO ACTION,
CONSTRAINT `fk_Groups_has_Roles_Roles1`
FOREIGN KEY (`Roles_ID`)
REFERENCES `test_apptest`.`Roles` (`ID`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;


-- -----------------------------------------------------
-- Table `test_apptest`.`Roles_has_Persons`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `test_apptest`.`Roles_has_Persons` (
`Roles_ID` INT NOT NULL,
`Persons_ID` INT NOT NULL,
PRIMARY KEY (`Roles_ID`, `Persons_ID`),
INDEX `fk_Roles_has_Persons_Persons1_idx` (`Persons_ID` ASC),
INDEX `fk_Roles_has_Persons_Roles1_idx` (`Roles_ID` ASC),
CONSTRAINT `fk_Roles_has_Persons_Roles1`
FOREIGN KEY (`Roles_ID`)
REFERENCES `test_apptest`.`Roles` (`ID`)
ON DELETE NO ACTION
ON UPDATE NO ACTION,
CONSTRAINT `fk_Roles_has_Persons_Persons1`
FOREIGN KEY (`Persons_ID`)
REFERENCES `test_apptest`.`Persons` (`ID`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;

-- […]


SET SQL_MODE=@OLD_SQL_MODE;
SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS;
SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;

This results in MySQL 5.6.36-1~dotdeb+7.1 (German) in the following error message:
Fehler
SQL-Befehl:

-- -----------------------------------------------------
-- Table `test_apptest`.`Roles_has_Persons`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `test_apptest`.`Roles_has_Persons` (

`Roles_ID` INT NOT NULL ,
`Persons_ID` INT NOT NULL ,
PRIMARY KEY ( `Roles_ID` , `Persons_ID` ) ,
INDEX `fk_Roles_has_Persons_Persons1_idx` ( `Persons_ID` ASC ) ,
INDEX `fk_Roles_has_Persons_Roles1_idx` ( `Roles_ID` ASC ) ,
CONSTRAINT `fk_Roles_has_Persons_Roles1` FOREIGN KEY ( `Roles_ID` ) REFERENCES `test_apptest`.`Roles` (
`ID`
) ON DELETE NO ACTION ON UPDATE NO ACTION ,
CONSTRAINT `fk_Roles_has_Persons_Persons1` FOREIGN KEY ( `Persons_ID` ) REFERENCES `test_apptest`.`Persons` (
`ID`
) ON DELETE NO ACTION ON UPDATE NO ACTION
) ENGINE = INNODB;

MySQL meldet: Dokumentation

#1215 - Cannot add foreign key constraint

Notice: When I click in "MySQL Connections" at Home of MySQL Workbench 6.3 on my connection called "test_apptest", I get the following warning:
MySQL Workbench
/!\ Connection Warning (test_apptest)
Incompatible/nonstandard server version of connection protocol detected (10.1.22).
A connection to this DB can be established but some MySQL Workbench features may not work properly since the DB is not fully compatible with the supported version of MySQL.
MySQL Workbench is developed & tested for MySQL Server versions 5.1, 5.5, 5.6 & 5.7.
[Continue Anyway] [Cancel]

MySQL Workbench and OGR2OGR (no replies)

$
0
0
Hello,

In Workbench Navigator, when I select a schema and I click on the button on the right side of the mouse, in the box that opens, an option with the name "LOAD SPATIAL DATA" appears. I click on it and opens a box. In this box I select a shapefile but when I click in NEXT, the Workbench said that don't find the PATH to the OGR2OGR.

Which PATH is this? I've already tried creating a PATH in Windows 10 environment variables, and it does not work!

Regards

importing spreadsheet into MySQL Workbench (no replies)

$
0
0
I have installed the following successfully in my computer form MySQL Installer:
MySQL Workbench 6.3, MySQL Shell, MySQL Command Line client, MySQL Server, Connector/OBDC, Connector/C++, Connector/J, Connector/NET, MySQL Utilities, MySQL Notifier.

I have an excel spreadsheet in Excel 2016. I have MySql Workbench open as well as the spreadsheet. After searching on the web, I came to this website https://dev.mysql.com/doc/mysql-for-excel/en/mysql-for-excel-export.html. It says under the Data tab, there is 'MySQL for Excel' button which leads you to a 'Open a MySQL Connection'. I don't see either of these when I click Data tab in Excel. If I right click to Customize this Ribbon and search for this button, I still do not see it. What am I doing wrong and are there any other ways to import the excel file into MySQL Workbench? Please help!

Buttons are missing when synchronizing (no replies)

$
0
0
Hello guys,

I think I found a bug on mysqlworkbench on mac os, but I need a confirmation about this in here.
This thumbnail is showing the synchronizing window.



The system is this:
Quote

MySQL Workbench Community (GPL) for Mac OS X version 6.3.9 CE build 10690321 (64 bit)
Configuration Directory: /Users/admin/Library/Application Support/MySQL/Workbench
Data Directory: /Applications/MySQLWorkbench.app/Contents/Resources
Cairo Version: 1.10.2
OS: macOS 10.12.x Sierra x86_64
CPU: 4x Intel(R) Core(TM) i5-5257U CPU @ 2.70GHz - 8.00GiB RAM
No video adapter info available

Let me know if you need more info.

Thanks in advance.

MySQL Workbench Migration errors (1 reply)

$
0
0
Hi guys,
I've followed the guide to Migrate an Access DB to a MariaDB on a Synology NAS. Creates the tables ok, but having some data transfer errors.

I think the important bit in the log is:
"Statement execution failed: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near "

This is a bit over my head, it's my first time here.
Can anyone help point me in the right direction, about working out why the data copy is failing? 25 out of 34 tables were fully copied.

Thanks,
Trav

Executing SQL Command (no replies)

$
0
0
I hate having to press Ctrl+Enter to execute a SQL command. Is there a way that I can setup a double click of my mouse to execute the command or even a function key (F2,F3, etc)??

ERROR 2027 (HY000): Malformed packet (1 reply)

$
0
0
Hi folks,
i have a issue with MySQL Workbanch 6.3.6, in connection get the error:
ERROR 2027 (HY000): Malformed packet
Both using client or using command line.

For company's policy I must use MySQL Workbanch, but i have tested connection with HeidiSQL_9.4_Portable, it's works.
Hints?

Thanks

MySQL Workbench creating and modifying trugger (no replies)

$
0
0
MySQL Workbench 6.3.8(6.3.9)
mysql --version
mysql Ver 14.14 Distrib 5.7.18, for Linux (x86_64) using EditLine wrapper
Ubuntu Mate 17.04

In SCHEMAS: No triggers;
"Create trigger ....." "Show triggers": No triggers;
Try to edit trigger on table (popup menu): No menu for it.

Why?

Import Wizard Failure (no replies)

$
0
0
Hi,

Just installed Community MySQL with Workbench on an iMac (Sierra 10.12.5) to import a CSV file. When I nominate to create a new table, there are two sections to complete.

One is a drop-down box and an entry field for entering the table name.

The drop-down box seems to be empty and I cannot select any values in it. Subsequently, no matter what I enter in the table name field, I get an error..

Unhandled exception: ("Incorrect database name ''", 1102)

Is that some sort of set-up issue or am I missing something?

Thanks in advance,
Rosti.

Lost connection to MySQL server during query (no replies)

$
0
0
I am new to relatively new to MySQL. I am using workbench and the server is on the local PC.

I've being struggling with a problem where for more intensive queries I get the following error: 'Error Code 2013: Lost connection to MySQL server during query'. This always seems to happen after exactly 30 seconds duration.

I therefore thought that there must be some time out limit at 30 seconds. I changed all of the variables that looked like they might be appropriate/were set to 30 seconds, but this didn't help.

SET GLOBAL connect_timeout=1000;
SET GLOBAL max_execution_time=10000;
SET GLOBAL net_read_timeout=600;
SET GLOBAL net_write_timeout=600;
SET GLOBAL innodb_flushing_avg_loops=40;
SET GLOBAL innodb_sync_spin_loops=40;

Any advice would be greatly appreciated.

Performance Reports shows a blank query in results (no replies)

$
0
0
While reviewing the performance reports I was looking at Errors or Warnings section under High Cost SQL statements and the top query listed is actually a blank line.

Whatever it is has executed 186593 times and thrown 76025 errors. How can I find out what this entry actually means and how it is being generated?

Set encoding for the BLOB viewer (no replies)

$
0
0
I have utf8 web site with cyrillic characters.
MySQL Workbench 6.3.9 community BLOB viewer gets blob value in wrong encoding as mojibake.
I think it is ansi.
SELECT CONVERT(column USING utf8) FROM table; works fine,
but what if i'll set a value for a cell, would it be right?
I think should be encoding set option in BLOB viewer right corner.

Logically if anything is in utf8, so BLOB viewer getter should be utf too.

where is my new migrated db stored (no replies)

$
0
0
i made a successful migration from MS ACCESS into mySQL using workbench and i can see the tables..

i want to connect Tableau to this new mySQL database but where is it located. I look under Data folder, and i see a Folder with the name of my migrated db and all the tables, but how do i connect to the database, whats the file ending and location?

hope i made sense, thanks

NA not imported to new table via workbench (no replies)

$
0
0
i imported a csv as a table with 19156 rows, i received alot of errors on import regarding NA values that i have in a column that is an 'int'. the error is,

"incorrect integer value: "NA" ...


how can i resolve the issue with column values that are NA

thanks

SQL query to find new column (no replies)

$
0
0
I need your help. I have a table named Test_Result with 2 columns as shown below.

ID Source_ID
10 1
20 2
30 2
40 3
50 3
60 3
70 4
I am trying to get output as below,but unable to get logic.

ID Parent_ID Source_ID
10 Null 1
20 Null 2
30 20 2
40 Null 3
50 40 3
60 50 3
70 Null 4
Kindly help me with this scenario. I attached question in picture for as well.

Regards, Abhi

mysql_upgrade: (non fatal) [ERROR] 1728: Cannot load from mysql.proc. The table is probably corrupted (no replies)

$
0
0
Hello,

I upgraded my mysql database from 5.6 to 5.7. When i tried to run the mysql_upgrade command. It is giving following error and i couldnt fetch tables from mysql workbench.

mysql_upgrade: (non fatal) [ERROR] 1728: Cannot load from mysql.proc. The table is probably corrupted

Thanks,
Manoj

turning sql file into diagrams (1 reply)

$
0
0
Suppose we mysqldump to > db.sql. Is there any free tool to turn the sql file into diagrams showing tables and their relationships?

Why? This is a friends deal but they have an existing situation and they have a requirement to produce documentation that includes these types of images/diagrams.

Workbench to connect to localhost with expired SSL (no replies)

$
0
0
We have an old server that we are using for testing purposes and the SSL recently expired on it. Because of this, our Workbench will no longer connect with the localhost MySQL database so that we can do edits for our testing.

I've tried to set the connection to "No" under the SSL tab, but I'm still not able to connect to the instance.

Is it possible to connect using the Workbench to the database instance without needing the SSL requirement?

Backup only partly works of MySQL database (no replies)

$
0
0
I tried using workbench to backup my database to a file. It started off OK, as you can see by the log, but note where I put a line of exclamation marks - everything fails after that. Can anyone explain why?

09:52:57 Dumping mysql5_920666_finally (membershiptable)
Running: mysqldump.exe --defaults-file="c:\users\owner\appdata\local\temp\tmpml1lyw.cnf" --user=Flintstone --host=mysql501.discountasp.net --protocol=tcp --port=3306 --default-character-set=utf8 "mysql5_920666_finally" "membershiptable"
09:53:00 Dumping mysql5_920666_finally (work)
Running: mysqldump.exe --defaults-file="c:\users\owner\appdata\local\temp\tmp9na2j2.cnf" --user=Flintstone --host=mysql501.discountasp.net --protocol=tcp --port=3306 --default-character-set=utf8 "mysql5_920666_finally" "work"
09:53:02 Dumping mysql5_920666_finally (homepagetable)
Running: mysqldump.exe --defaults-file="c:\users\owner\appdata\local\temp\tmpgs79a6.cnf" --user=Flintstone --host=mysql501.discountasp.net --protocol=tcp --port=3306 --default-character-set=utf8 "mysql5_920666_finally" "homepagetable"
09:53:05 Dumping mysql5_920666_finally (slidertable)
Running: mysqldump.exe --defaults-file="c:\users\owner\appdata\local\temp\tmplgdskp.cnf" --user=Flintstone --host=mysql501.discountasp.net --protocol=tcp --port=3306 --default-character-set=utf8 "mysql5_920666_finally" "slidertable"
09:53:55 Dumping mysql5_920666_finally views and/or routines and/or events
Running: mysqldump.exe --defaults-file="c:\users\owner\appdata\local\temp\tmphokfwx.cnf" --user=Flintstone --host=mysql501.discountasp.net --protocol=tcp --port=3306 --default-character-set=utf8 --skip-triggers --no-data --no-create-db --no-create-info --routines --events "mysql5_920666_finally"
!!!!!
mysqldump: Couldn't execute 'show events': Access denied for user 'Flintstone'@'%' to database 'mysql5_920666_finally' (1044)

Operation failed with exitcode 2
09:53:59 Dumping mysql5_920666_finally (membershiptable)
Running: mysqldump.exe --defaults-file="c:\users\owner\appdata\local\temp\tmpj7950e.cnf" --user=Flintstone --host=mysql501.discountasp.net --protocol=tcp --port=3306 --default-character-set=utf8 "mysql5_920666_finally" "membershiptable"
mysqldump: Got error: 1045: Access denied for user 'Flintstone'@'47.17.179.82' (using password: NO) when trying to connect

Operation failed with exitcode 2
09:53:59 Dumping mysql5_920666_finally (work)
Running: mysqldump.exe --defaults-file="c:\users\owner\appdata\local\temp\tmpucdrzz.cnf" --user=Flintstone --host=mysql501.discountasp.net --protocol=tcp --port=3306 --default-character-set=utf8 "mysql5_920666_finally" "work"
09:54:00 Dumping mysql5_920666_finally (membershiptable)
Running: mysqldump.exe --defaults-file="c:\users\owner\appdata\local\temp\tmpnpiydp.cnf" --user=Flintstone --host=mysql501.discountasp.net --protocol=tcp --port=3306 --default-character-set=utf8 "mysql5_920666_finally" "membershiptable"
mysqldump: Got error: 1045: Access denied for user 'Flintstone'@'47.17.179.82' (using password: NO) when trying to connect

Operation failed with exitcode 2
Error executing task [Error 32] The process cannot access the file because it is being used by another process: u'C:\\Users\\Owner\\Documents\\dumps\\Dump20170804\\mysql5_920666_finally_membershiptable0.sql'
mysqldump: Got error: 1045: Access denied for user 'Flintstone'@'47.17.179.82' (using password: NO) when trying to connect

Operation failed with exitcode 2
Error executing task 'NoneType' object has no attribute 'name'
09:54:00 Dumping mysql5_920666_finally (membershiptable)

appearance - Multiple connection (no replies)

$
0
0
MysqlWorkbench: 6.3.9
Ubuntu: 16.04 with Unity

When i connect to multiple mysql connection (i.e. dev mysql and dev production ) i'm not able to identify which connection is active.
In the bar i see two tab with the name of the connection, but i'm not able to identify which is the tab active!

Sorry for my english! :)

Ale
Viewing all 3736 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>