• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

Importing MYSQL database tables

J

jason1972

Guest
I have happily ceated my database locally which works fine.

I am now trying to get it onto my server using Plesk and the MyPHPadmin tool to import it.

The import failed.

I then tried to import just selected tables and it begun to work fine.

I am now left with just 1 table that will not import. It is the table from my forum that includes all the post attachments so is quite large.

Can anybody give me some guidance on what might be wrong. The file is about 100mb is that an issue for instance ??

many thanks
Jason
 
Use the MySQL shell and try something like:

$ mysql -u [user] -p --verbose [database] < [sql script]

But this to import all at the same time, not just one table.
 
Is there a way of connecting to my database from my desktop verson of MySQL admin rather than having to use Plesk ??
 
Sure, use something like SQLYog or the MySQL GUI. Or SSH remotely and restore.
 
Back
Top