I have a customer with a Typo3 website that is hosted on a webserver with very restricting policies when it comes to database users.
I want to create a development site for that site and in order for that, I need to duplicate the database of the original site. The problem is, the database user I can use through phpMyAdmin has no CREATE
ability.
So plainly exporting an sqldump and importing it into the DB of the development site, doesn't work, it gives me a "#1044 access denied" error. Also when I simply try to use the phpMyAdmin built in "database copying" tool, I get that same error.
External access via ODBC is off course denied. The webhosting support hasn't been very helpful with my problem yet.
My question: Can you think of any way I can import an sqldump either into an empty database, or an exiting Typo3 database without using phpMyAdmin or having external access through ODBC? Maybe it's possible through some PHP script? The DB user Typo3 uses must be able to do DB alterations, but it only has local access, so I cannot use it and it's also different from the one I can use on phpMyAdmin.