On Thu, 5 Jul 2001 [EMAIL PROTECTED] wrote:

> [MySQL]
> what does this mean and how can i fix it?
>
> Access denied for user: 'niban@localhost' to database 'tracking'Could
> not drop database tracking
>
> thanks.

It means what it says :)  The user niban, coming from the local loopback
interface (the current machine) does not have the power to access the
database 'tracking', nor the power to drop it.  A quick, and probably
crude, way to fix this is to login to the SQL server as the root user
(you should have that password), and do something like (I forget the
syntax, read the manual):

GRANT ALL PRIVILEGES ON *.*
TO niban@localhost
IDENTIFIED BY 'somepassword'

Then see if the script goes belly up.

-- 

Sapere aude
My mind not only wanders, it sometimes leaves completely.


---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to