I am new to MySQL. I have a decent machine and have been importing a 16gb .sql database since yesterday. The progress bar doesn't show anything but it does say Import is running.... I have searched everywhere and there is no clear solution to know the progress of the import process in Windows.
I have tried:
SHOW PROCESSLIST
and
SHOW DATABASES
but it doesnt help me indicate an ETA or I don't know what im looking at.
I am running on MySQL workbench 6.3.7. Will you guys be able to help me?
As far as I know, there's this bug with the workbench that will cause the status bar to not move until the import is complete:
https://bugs.mysql.com/bug.php?id=54370
MySQL Workbench shows at least a log for the file it is importing at the moment if you use their import tool (Administration > Import Data) BUT (and it's a huge but) if you leave the "import progress" screen and try to go back to it later, you won't be able to do it (if it's not a bug, it is at least a big usability problem).
So if you, accidentally or on purpose, leave the progress screen your only option is the one in @8bitjunkie's answer:
Run this query
SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST
and check whether there's still an update going on.