MySQL Forums
Forum List  »  General

Re: Export/Import a mysql database on to an apache server
Posted by: A M
Date: March 03, 2005 11:31AM

Hey, do you have command line access? If so then you can use something like this:

EXPORT:
# mysqldump [databasename] > [filename]
or
# mysql -u[username] -p[password] [databasename] > [filename]


IMPORT:
# mysql -u[username] -p[password] [databasename] < [filename]

hth :o)

Options: ReplyQuote


Subject
Written By
Posted
Re: Export/Import a mysql database on to an apache server
A M
March 03, 2005 11:31AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.