If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > MySQL > Copy MySQL database from one provider to a new one.

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 09-10-04, 07:56
TimoV TimoV is offline
Registered User
 
Join Date: Dec 2003
Posts: 56
Unhappy Copy MySQL database from one provider to a new one.

I have a (small) MySQL database running on my current website. I've recently got a new hosting provider and now I need to copy my database from one to the other.

I only have PHPmyAdmin to do this but when I try to upload the full db (after I did an export on the old provider), it times out. The created files are (uncompressed) under 5Mb in total. If I seperate the largest table (1.8 mb file) from the rest and try it in two bits both imports fail.

Any tips on how I can get the database copied across? (In the past I've done it one table at a time to my home machine which worked fine, till that one big table....) Like is there a way to make the dump of the big table spread across 3 smaller files?

thanx
Reply With Quote
  #2 (permalink)  
Old 09-13-04, 16:16
JohnStrecker JohnStrecker is offline
Registered User
 
Join Date: Sep 2004
Posts: 39
Hi!



I believe phpMyadmin has a zipping option hasn't it ? This should reduce the size of your large file quite substantially.

If it does not maybe you could "slice" your big table in three sub tables with SQL statements like

select * from big_table into small_table1 where Item_ID < 200
select * from big_table into small_table1 where Item_ID >199 and Item_ID<400 etc ...

I know it is a bit rudimentary but hey ... !

If it works ...

Have fun!
One line at a time ...
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On