Convert MS SQL Server database (.mdf file) to MySQL via PhpMyAdmin?

I need to import the MS SQL Server database, which is in the .mdf format via PhpMyAdmin for MySQL:

  • Is it possible to import it directly from PhpMyAdmin, and if not, how can I convert this file to MySQL format?
  • Also, how to increase the database size limit in PhpMyAdmin?
+5
source share
2 answers

You can use openDBcopy and ESF data migration toolkit . In fact, this is a frequently discussed SO issue. See the following questions:

, php.ini :

post_max_size = 8M
upload_max_filesize = 2M
max_execution_time = 30
max_input_time = 60
memory_limit = 8M
+3

Phpmyadmin .mdf .ldf. MSSQL Express , sql .

http://msdn.microsoft.com/en-us/library/ms187510.aspx

0

All Articles