PDA

View Full Version : Mysql question.


Nazareth66
12-16-2003, 02:16 AM
Hello, am new to mysql still and need the command to dump the old database from Mysql 8) thanks in advance.

Conan
12-16-2003, 02:25 AM
Well depends what you want to do.


To dump the complete database to this

start run cmd or command

cd\

c:\

mysqldump -u root databasename > sqlfile.sql

Or to dump just a table do this.

mysqldump -u root databasename tablename > sqlfile.sql

Nazareth66
12-16-2003, 02:37 AM
Thanks Conan thats what I needed 8)

Conan
12-16-2003, 02:41 AM
NP =)