[PHP-DB] How to take Backup ?

2004-07-01 Thread Rinku
I want to take backup for Mysql database.
 
Can any of you tell me how to take Backup and how to Restore it ?
 
Rinku

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

Re: [PHP-DB] How to take Backup ?

2004-07-01 Thread zareef ahmed
Hi,
  If you have phpmyadmin on your system you can export
all your data in sql format which can be restore again
by running that sql script. make sure to check
complete insert checkbox at time of export operations.

Revert Back with any comment or problem.
Zareef Ahmed

--- Rinku [EMAIL PROTECTED] wrote:
 I want to take backup for Mysql database.
  
 Can any of you tell me how to take Backup and how to
 Restore it ?
  
 Rinku
 
 __
 Do You Yahoo!?
 Tired of spam?  Yahoo! Mail has the best spam
 protection around 
 http://mail.yahoo.com 


=
Zareef Ahmed :: A PHP Developer in Delhi(India).
Homepage :: http://www.zasaifi.com



__
Do you Yahoo!?
New and Improved Yahoo! Mail - Send 10MB messages!
http://promotions.yahoo.com/new_mail 

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DB] How to take Backup ?

2004-07-01 Thread Cole S. Ashcraft
Try the mysqldump command
zareef ahmed wrote:
Hi,
 If you have phpmyadmin on your system you can export
all your data in sql format which can be restore again
by running that sql script. make sure to check
complete insert checkbox at time of export operations.
Revert Back with any comment or problem.
Zareef Ahmed
--- Rinku [EMAIL PROTECTED] wrote:
 

I want to take backup for Mysql database.
Can any of you tell me how to take Backup and how to
Restore it ?
Rinku
__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam
protection around 
http://mail.yahoo.com 
   


=
Zareef Ahmed :: A PHP Developer in Delhi(India).
Homepage :: http://www.zasaifi.com
		
__
Do you Yahoo!?
New and Improved Yahoo! Mail - Send 10MB messages!
http://promotions.yahoo.com/new_mail 

 


--
This message has been scanned for viruses and
dangerous content by MailScanner on mail.ashcraftfamily.net, and is believed
to be clean.
Please report any deviance from this condition immediately to the AFN
Administrator at [EMAIL PROTECTED]
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP-DB] How to take Backup ?

2004-07-01 Thread David Orlovich
Hi Rinku
To dump (backup), I do the following:
/usr/local/mysql/bin/mysqldump -uroot -pyourpassword --opt 
--all-databases  ~/backup.sql

To restore, I do this:
cat ~/backup.sql | /usr/local/mysql/bin/mysql -uroot -pyourpassword
If you've dumped your databases in order to install a new version of 
MySQL, then your restore command won't need to include the -p flag, as 
the root password won't be set.  Once you've restored the backup, go 
into MySQL and enter:
flush privileges;
at the prompt to reinstall your root password etc.

Hope that helps.
Cheers, DavidO.
On 2/07/2004, at 4:26 PM, Rinku wrote:
I want to take backup for Mysql database.
Can any of you tell me how to take Backup and how to Restore it ?
Rinku
__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around
http://mail.yahoo.com
Dr David Orlovich,
Senior Lecturer in Botany.
Department of Botany,
University of Otago,
P.O. Box 56,
(Courier: 464 Great King Street)
Dunedin,
New Zealand.
Phone: (03) 479 9060
Fax: (03) 479 7583
Web: http://www.botany.otago.ac.nz/
Ecology, Conservation and Biodiversity Research Group: 
http://www.otago.ac.nz/erg/

Botanical Society of Otago: http://www.botany.otago.ac.nz/bso/
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP-DB] How to take Backup ?

2004-07-01 Thread Michael Gale
Hello,

Have a look at mysqldump .. it is used for backing up tables and
database.

Example
mysqldump --add-drop-table -c testdatabase -h 127.0.0.1 -u mysqlbk
--password=mysqlbk  testdatabase.bk


Michael


On Thu, 1 Jul 2004 21:26:27 -0700 (PDT)
Rinku [EMAIL PROTECTED] wrote:

 I want to take backup for Mysql database.
  
 Can any of you tell me how to take Backup and how to Restore it ?
  
 Rinku
 
 __
 Do You Yahoo!?
 Tired of spam?  Yahoo! Mail has the best spam protection around 
 http://mail.yahoo.com 

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php