• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Windows A backup of large database?

kito2

www.masteria.net
Joined
Mar 9, 2009
Messages
3,766
Solutions
1
Reaction score
225
Location
Chile, Santiago
For people who works with windows, it seems impossible to make a 100% working backup of the database...

When you try to export the database, it just save some lines but there are missing lots of them...

This really sux...

Someone knows how to solve this problem?
 
Idk if this will work, but try start->run->cmd

Code:
mysqldump -uroot -ppassword dbname > \C:\backup.sql

not sure if I declared path correctly, u can also try:

Code:
/C:/backup.sql
or
Code:
C:/backup.sql

etc.
 
from the xampp control panel click on shell and it will open something like cmd screen
type this
Code:
mysqldump -u root -password databasename> databasename.sql
and you will find the backup file in xampp folder
 
Damn, I can't do the ">", Im on a notebook.
Also, when I try to type this command on CMD, it says that mysqldump doesnt exist :S

Spider, Im checking your guide, Im going to test it.
 
Last edited:
Back
Top