
Originally Posted by
w9dkc
I attempted to import the server A database into server B database and got an error about not authorized.
This is a long shot but I assume that you are using Linux. If you are trying to import using mysql -u USERNAME -p DATABASENAME <OLDDATAFILE.gz
try using the --binary-mode switch eg mysql --binary mode -u USERNAME -p DATABASENAME <OLDDATAFILE.gz
If that fails with the "not authorized" error try unzipping the database file first eg
Code:
gunzip OLDDATAFILE.sql.gz
and import the resulting unzipped sql text file.
Bookmarks