Re: Deleting a database in Mysql

2003-02-10 Thread Nasser Ossareh
drop database_name; make sure no ones is using the database_name. --- Calvin Lam <[EMAIL PROTECTED]> wrote: > Hi, > > I am a newbie with this and I need help with Mysql > > How can I delete a database in Mysql > > thanks! > > --

RE: Deleting a database in Mysql

2003-02-07 Thread Joseph Jude
I am using MySQL CC, the GUI client. It is easy to drop a db there. Any GUI client should have that option. If you are newbie, I would suggest doing this. If using command line, it is Drop database Refer the manual http://www.mysql.com/doc/en/DROP_DATABASE.html Regards, Joseph >-Original Me

re: Deleting a database in Mysql

2003-02-07 Thread Victoria Reznichenko
On Wednesday 05 February 2003 16:50, Calvin Lam wrote: > I am a newbie with this and I need help with Mysql > > How can I delete a database in Mysql Use DROP DATABASE statement: http://www.mysql.com/doc/en/DROP_DATABASE.html -- For technical support contracts, goto https://order.mysql.

RE: Deleting a database in Mysql

2003-02-07 Thread Victor Pendleton
DROP DATABASE dataBaseName; -Original Message- From: Calvin Lam [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 05, 2003 8:50 AM To: [EMAIL PROTECTED] Subject: Deleting a database in Mysql Hi, I am a newbie with this and I need help with Mysql How can I delete a database in Mysql

Re: Deleting a database in Mysql

2003-02-07 Thread Stefan Hinz
Calvin, CL> I am a newbie with this and I need help with Mysql CL> How can I delete a database in Mysql DROP DATABASE database_name; Regards, -- Stefan Hinz <[EMAIL PROTECTED]> iConnect GmbH Heesestr. 6, 12169 Berlin (Germany) Telefon: +49 30 7970948-0 Fax: +49 30 7

Re: Deleting a database in Mysql

2003-02-07 Thread Kamara Eric R-M
Hi Calvin, Just do drop database db_name Regards, Eric On Wed, 5 Feb 2003, Calvin Lam wrote: > Hi, > > I am a newbie with this and I need help with Mysql > > How can I delete a database in Mysql > > thanks! - Before posting,

Re: Deleting a database in Mysql

2003-02-06 Thread Doug Thompson
See DROP DATABASE Doug On Wed, 5 Feb 2003 22:50:25 +0800, Calvin Lam wrote: >Hi, > >I am a newbie with this and I need help with Mysql > >How can I delete a database in Mysql > >thanks! > >- >Before posting, please check: > h

Re: Deleting a database in Mysql

2003-02-06 Thread Kevin Smith
drop database yourdatabasename; - Original Message - From: "Calvin Lam" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, February 05, 2003 2:50 PM Subject: Deleting a database in Mysql > Hi, > > I am a newbie with this and I need help with Mysql > > How can I delete a databas