| View previous topic :: View next topic |
| Author |
Message |
Timmy
Joined: 10 Feb 2010 Posts: 146
|
Posted: Dec 14, 2010 3:59 pm Post subject: dump of your SQL database, How? |
|
|
Hello friends,
I want to upgrade my script from 1.7 to 1.8
But I am stuck in this step:
| Quote: | | Make a dump of your SQL database. |
What is dump? And how to make that?
Is dump a backup?
Thank you  |
|
| Back to top |
|
 |
chrda
Joined: 14 Sep 2009 Posts: 260
|
Posted: Dec 14, 2010 4:45 pm Post subject: |
|
|
How to take backup
mysqldump -u root -p DBNAME > DBNAME.sql
How to put it back:
mysql -u root -p DBNAME < DBNAME.sql
so dump means taking backup of your database.. |
|
| Back to top |
|
 |
admin Site Admin

Joined: 22 Mar 2006 Posts: 1283
|
|
| Back to top |
|
 |
Timmy
Joined: 10 Feb 2010 Posts: 146
|
Posted: Dec 14, 2010 6:19 pm Post subject: |
|
|
Thank you guys!
I already did the backup but I restore my script back to version 1.7
Because I have a custom template and this version had a lot of template files modifications.
Would be great If we had access to the template modifications so we can update our custom template too :/ |
|
| Back to top |
|
 |
|