Posted By

yuconner on 08/21/06


Tagged

database commands


Versions (?)


Advertising

Website Promotion DIRECTORY is a crucial factor for all websites that need to gain better organic search engine rankings and increase website traffic.
Submitting your website as part of your Web Promotion strategy to our SEO friendly and high traffic Business Directory for review is an excellent way to gain a valuable backlink and increase your websites visibility online.

Submit Site


Who likes this?

5 people have marked this snippet as a favorite

luman
Phoenix
zingo
jachin
umang_nine


Command line instructions to create a database in MySQL


Published in: SQL 






$ mysql -u ''adminusername'' -p

Expand | Embed | Plain Text
  1. mysql> CREATE DATABASE ''databasename'';
  2.  
  3. mysql> GRANT ALL PRIVILEGES ON ''databasename''.* TO "''username''"@"''hostname''" IDENTIFIED BY "''password''";
  4.  
  5. mysql> FLUSH PRIVILEGES;
  6.  
  7. mysql> EXIT

Report this snippet 

You need to login to post a comment.