Search

MySQL
Backing Up and Restoring MySQL Database PDF Print E-mail
Programming - MySQL
Sunday, 05 December 2010 13:02
 
To backup a MySQL database we are using the command 'mysqldump'. The syntax to dump a mysql database is

mysqldump -u [username] -p [password] [databasename] > [backupfile.sql]

[username]- username of your database

[password]- password of your database

[databasename]- your database name

[backupfile.sql]- name of the file to which the backup should be written

 

Last Updated on Sunday, 05 December 2010 13:18
 
How to Migrate a Mysql Database with a simple method PDF Print E-mail
User Rating: / 1
PoorBest 
Programming - MySQL
Thursday, 11 March 2010 15:29

 

If you want to migrate your Mysql Server, you want to export data from one MySQL server to another server, and then import the data to a new server,

It is very simple

Log in to First Server and give  the following command:

 

 
reset mysql root password PDF Print E-mail
Programming - MySQL
Monday, 02 November 2009 11:42

 

 

if using MySql for the first time then we use the command

#mysqladmin -u root password 'yourpassword'

 give your own password for 'your password' but without quotes

if you know your root password and want to reset it. then we can use the command

 #mysqladmin -u root -p'oldpassword' password 'newpassword'

give your old password and new password but without quotes.

if you forgot the root password 

Last Updated on Monday, 02 November 2009 12:20
 
How to use MySQL in Windows PDF Print E-mail
User Rating: / 2
PoorBest 
Programming - MySQL
Saturday, 04 July 2009 11:09

In this guide I will show how to use MySQL in Windows. This guide is  intended to help those who have very little knowlegde of using MySQL.

Last Updated on Wednesday, 08 July 2009 07:36
 


We have 75 guests online