Problems importing MySQL database to WorkBench and PHPMyAdmin

0

I'm trying to import a database MySQL , both through WorkBench , and PHPMyAdmin , everything runs correctly, but it does not matter absolutely nothing.

Imported in WorkBench

Imported PHPMyAdmin

  

Messages in red are not important, imports have always worked for me even if that message appears.

    
asked by Ferny Cortez 01.06.2018 в 07:42
source

1 answer

0

-A few days ago I had similar problems with MySQL version 8.0 (Even this version is unstable).

-I recommend you to unpack and try with version 5.7 and tell me how it went;)

-In my case, install WampServer ...

Worse, it updates the root user, executing this command in the shell.

mysql> use mysql;
​mysql> update user set authentication_string=password('ingresapassword') where user='root';
​mysql> flush privileges;
​mysql> quit
    
answered by 01.06.2018 в 09:49