RESOLUTION
You should create an empty database through the Plesk interface at "Domains
-> DOMAIN.TLD -> Databases -> Add New Database" and upload
the database SQL file using PHPMyAdmin. Another way to import the data from
SQL file to MySQL via command line is as follows:
# mysql -uadmin -p`cat /etc/psa/.psa.shadow` -D DATABASE < FILE.sql To dump a database use:
# mysqldump -uadmin -p`cat /etc/psa/.psa.shadow` DATABASE > FILE.sql