An Entrepreneur, Coach, IT Consultant, Strategic Adviser, and a Traveler craving to explore and contribute to forming a better society.

Friday, August 21, 2009

MySQLDump Database with Stored Procedures

No comments :
MySQLDump Database with Stored Procedures

The following query/commands shows the option to backup mysql database along with its stored procedures and routines
MySQL> mysqldump -h hostname_or_ip -u root -p password --databases database1 database2 database3 ... databaseN -R

-R --> this will include all the information about routines, stored procedures, functions

Featured Blog Topics:


No comments :