Folks, I need help and don't really know where to begin. I need to transfer web hosts, on my current host I have a 90MB MySQL database (for a forum). I need to transfer it to the new hosts MySQL database. I only have phpMyAdmin access to the server. I ope I have given you enough info.
Hey thanks for all of the replies. But I have run into a snag. The current database is MSSQL and I want to put it on to a MySQL database. Is this even possible?
You can export the MSSQL data into CSV format and then import that into mysql. You may need to split the csv files into small size chunks using some file splitter program before importing using phpmyadmin.
using ssh access if u have, then it's so easy to move and transfer Your data,if u need any help pm me ..
This is just getting more and more complicated. The current host of the website and the database will not give me access to the database server. Instead they have created a .BAK file (that I cannot open) that I downloaded via FTP. Hence the reason for dumping them in the first place. Is it possible to load this file into a MySQL database?
Upload your dump to your server into the /home directory then use the following command to restore it mysql -u USERNAME -p mysql_database_name < /home/database_dumpname.sql the next thing that will popup is the password prompt.
Well, here is where i am so far. I have installed SQL Server 2005, and SQL Server Management Studio Express on my machine. I have restored the .BAK file to the MSSQL database. Now I need to figure out how to get it from there to a usable mysql file with the insert statements and such.