Re: [PHP] mySQL back up

2002-03-04 Thread Anas Mughal
Well, Run mysql with that file as input. I work on Linux and I do something like: mysql -ppassword DBNAME < dump.sql Where DBNAME is the name of the database, dump.sql is the text file, password is my password. (I think I did something on Windows months and it worked.) --- Wilbert Enserink

Re: [PHP] mySQL back up

2002-03-04 Thread Scott St. John
1)Create the db in mysql: mysqladmin -u (your user name) -p (if you have a password) create (new database name) 2)mysql -D (the name you used above) < (the text file) Works on Unix and 2000. Is that what you mean? -Scott On Mon, 4 Mar 2002, Wilbert Enserink wrote: > Hi all, > > I have