View Single Post
Old 06-03-2003, 04:28 PM  
blazin
Confirmed User
 
Join Date: Aug 2002
Posts: 2,781
Hi Tipsy

Assuming your using unux or similiar try this:

mysqldump -u DBUSER DBNAME -p > dbdump.sql


then run your db client and type >

create database NEWDBNAME;

exit the client then do this

mysql -u DBUSER NEWDBNAME -p < dbdump.sql

(of course replacing the italics with your db details)

Hope that helps
blazin is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote