Re: Grant Privileges Problem

2009-11-09 Thread Victor Subervi
Never mind. Had to add @'localhost' On Mon, Nov 9, 2009 at 4:20 PM, Victor Subervi wrote: > Hi; > I created a user and then granted privileges: > grant all to victor identified by 'pw'; > Looked good. Tried to log in as victor an no go. Please advise. > Victor >

Grant Privileges Problem

2009-11-09 Thread Victor Subervi
Hi; I created a user and then granted privileges: grant all to victor identified by 'pw'; Looked good. Tried to log in as victor an no go. Please advise. Victor

Re: GRANT privileges should check for db.table existence

2009-05-26 Thread Johan De Meersman
*shrugs* I, for one, appreciate a tool that doesn't try to be smarter than I am. If I want to be treated like an idiot, I'll use microsoft software. On Wed, May 27, 2009 at 2:38 AM, Daevid Vincent wrote: > I'm a little concerned and disappointed that the GRANT command doesn't do > any sort of c

GRANT privileges should check for db.table existence

2009-05-26 Thread Daevid Vincent
I'm a little concerned and disappointed that the GRANT command doesn't do any sort of checking (like a foreign key for example) to verify that the database and table exist?! I get the case of *.* but it seems crazy to me that it would allow foo.bar when neither a database named 'foo' nor a table

How to grant privileges using REVOKE statement

2007-10-18 Thread Rafal Somla
Hi All! Here is a funny thing I come across when investigating our privilege control system. Consider the following situation: mysql> GRANT ALL ON `%o`.* TO rafal; mysql> GRANT SELECT ON foo.* TO rafal; The intention is that rafal has all privileges for all objects in databases whose name en

Grant privileges to a new database...

2004-08-02 Thread Scott Fletcher
What I have here is a database-driven website. In the past, I created a database and grant privileges to it. Now, I'm creating a carbon copy of it into another website which will be a test website with a test database. So, when I try the grant privileges to the test database, it returned a

Re: mysql grant privileges to many DB

2004-07-23 Thread SGreen
Have you tried: GRANT USAGE on mysql.* TO ... (fill in with your user's information). >From the docs (http://dev.mysql.com/doc/mysql/en/GRANT.html) USAGE = Synonym for ``no privileges'' Yours, Shawn Green Database Administrator Unimin Corporation - Spruce Pine Ginger Cheng <[EMAIL PROTECTED]>

mysql grant privileges to many DB

2004-07-23 Thread Ginger Cheng
Hello, MySQL gurus, I am wondering how I can grant a user the privileges to all the db except for mysql DB. THere are many databases so I don't want to grant one by one. But 'revoke all on mysql.* from user' does not work. Thank you for help ginger -- MySQL General Mailing List For list archiv

Re: grant privileges problem

2004-07-19 Thread SGreen
I should have looked before I answered. I apologize to you and the rest of the list for having my head up my a**.. I RTFM (http://dev.mysql.com/doc/mysql/en/GRANT.html) and find: The EXECUTION, FILE, PROCESS, RELOAD, REPLICATION CLIENT, REPLICATION SLAVE, SHOW DATABASES, SHUTDOWN, and SUPER pr

Re: grant privileges problem

2004-07-19 Thread Vincent . Badier
Sorry, grant REPLICATION SLAVE on forum to repltest2@'%' IDENTIFIED BY 'replforum'; ERROR 1144: Illegal GRANT/REVOKE command. Please consult the manual which privileges can be used. (using 4.20) Regard's Vincent You were attempting to gr

Re: grant privileges problem

2004-07-19 Thread SGreen
You were attempting to grant replication rights to all of the TABLES in the database "forum". Try it again like: grant REPLICATION SLAVE on forum to repl@'%' IDENTIFIED BY 'replforum'; and see if it works better ;-) Yours, Shawn Green Database Administrator Unimin Corporation - Spruce Pine [E

grant privileges problem

2004-07-19 Thread Vincent . Badier
Trying to setup a new user for replication purpose, here what i got : Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 2566 to server version: 4.0.20-standard grant REPLICATION SLAVE on forum.* to repl@'%' IDENTIFIED BY 'replforum'; ERROR 1221: Wrong usage o

RES: GRANT PRIVILEGES doesn't perform the way I expect it to....? ?

2004-06-07 Thread Renato Cramer
PROTECTED]; [EMAIL PROTECTED] Assunto: GRANT PRIVILEGES doesn't perform the way I expect it to?? I'm having a little trouble with granting the correct privilege to the user with one database instead of all databases. When I do this with all databases, it work great.. --snip-- //

GRANT PRIVILEGES doesn't perform the way I expect it to....??

2004-06-07 Thread Scott Fletcher
I'm having a little trouble with granting the correct privilege to the user with one database instead of all databases. When I do this with all databases, it work great.. --snip-- //Issued SQL Command... GRANT ALL ON *.* TO 'Username'@'localhost.domain.com' IDENTIFIED BY 'Password' //Corre

Grant Privileges

2003-07-24 Thread Charles Cantrell
hat the results should be, or if I have another problem. I am attempting to set up an administrative user, that has the same privileges as root. I have been able to set up a user that appears to have all privileges, with the exception of GRANT privileges to other users. This user can create new

Re: cant grant privileges?!

2003-06-04 Thread Nils Valentin
s Valentin Tokyo/Japan 2003年 6月 4日 水曜日 01:31、ajos さんは書きました: > Use it after the grant command: > > flush privileges; > > >hi everybody... > > > >i just installed mysql 4.0.13 on a redhat linux 8.0 > >when i create a database as root and then grant privileges to ano

Re: cant grant privileges?!

2003-06-04 Thread ajos
Use it after the grant command: flush privileges; >hi everybody... >i just installed mysql 4.0.13 on a redhat linux 8.0 >when i create a database as root and then grant privileges to another user >like this: >GRANT ALL ON somedb.* TO [EMAIL PROTECTED] IDENTIFIED BY &quo

Re: cant grant privileges?!

2003-06-03 Thread Nils Valentin
localhost" in this case. > > > > Best regards > > > > Nils Valentin > > Tokyo/Japan > > > > 2003年 6月 3日 火曜日 11:31、Kalin Mintchev さんは書きました: > > > hi everybody... > > > > > > i just installed

Re: cant grant privileges?!

2003-06-03 Thread Kalin Mintchev
ven need "-h localhost" in this case. > > Best regards > > Nils Valentin > Tokyo/Japan > > > > 2003年 6月 3日 火曜日 11:31、Kalin Mintchev さんは書きました: > > hi everybody... > > > > i just installed mysql 4.0.13 on a redhat linux 8.0 > > when i creat

Re: cant grant privileges?!

2003-06-03 Thread Nils Valentin
linux 8.0 > when i create a database as root and then grant privileges to another user > like this: > GRANT ALL ON somedb.* TO [EMAIL PROTECTED] IDENTIFIED BY "passwd"; > > everything seems to be fine but then if i log in as "user" and try to get > to the

cant grant privileges?!

2003-06-03 Thread Kalin Mintchev
hi everybody... i just installed mysql 4.0.13 on a redhat linux 8.0 when i create a database as root and then grant privileges to another user like this: GRANT ALL ON somedb.* TO [EMAIL PROTECTED] IDENTIFIED BY "passwd"; everything seems to be fine but then if i log in as "user&

Re: grant privileges in mysql

2003-02-19 Thread Jon Miller
Need to know the correct syntax for granting a new user access to a = MySQL database with select, insert and updates privileges only and only on a = particular database and table (although there are multiple tables). Tried using the following: grant Select,Insert,Update on Ruby.oCeremony to beilby

re: MySQL4 user table not showing GRANT privileges correctly

2002-12-14 Thread Victoria Reznichenko
On Saturday 14 December 2002 02:49, John Dell wrote: > Using MySQL 4.0.5a, GRANT is correctly adding users (and the privileges are > working), but when you view the mysql.user table, all privileges are > showing up as 'N', when some of them should be 'Y'. Anybody seen this or > understand what's g

MySQL4 user table not showing GRANT privileges correctly

2002-12-14 Thread John Dell
Hi, Using MySQL 4.0.5a, GRANT is correctly adding users (and the privileges are working), but when you view the mysql.user table, all privileges are showing up as 'N', when some of them should be 'Y'. Anybody seen this or understand what's going on? For example: GRANT SELECT ON dbname.* TO test

ADVICE ON GRANT PRIVILEGES

2001-11-15 Thread tpchan
Hi, I resubmited again for anyone with solution to assist me. I had one question. I would like to set permission for remotely backup using mysqldump. Let's assume I want to use B(10.0.0.2) server to remotely backup A(10.0.0.1) server. The command I run at B server are: mysqldump --opt -h10.0.0

ADVICE ON GRANT PRIVILEGES

2001-11-15 Thread tpchan
Hi, I had one question. I would like to set permission for remotely backup using mysqldump. Let's assume I want to use B(10.0.0.2) server to remotely backup A(10.0.0.1) server. The command I run at B server are: mysqldump --opt -h10.0.0.1 -uadmin -pXXX comers > comers.txt (p/s : I want to dump

Cannot grant privileges to any user

2001-05-21 Thread Wouter Hanegraaff
Hi, This morning, I wanted to add a new database to mysql for a web based application. However, I don't seem to be able to grant any privileges to the database. This is what I do # mysql -uroot -p mysql> use mysql Database changed mysql> select * from user where user='root' and host='localhost';

Re: Mysql server grant privileges problem

2001-05-01 Thread B. van Ouwerkerk
> >So would anyone explain to me how can I setup up a good privileges of >mysql server.Thx Take a look at the manual. It's all there.. as far as I remember.. Bye, B. - Before posting, please check: http://www.mysql.com/

Mysql server grant privileges problem

2001-05-01 Thread Tom Cheung
Hello everyone: After I have successfully installed mysql server 3.23.37 and connect to it and do some operations.but I have found that there is a security hole that other users can use "mysql" database !!!. And I have started the server like that: bin/safe_mysqld -Sg & then mysql>grant al

Re: GRANT Privileges

2001-01-27 Thread Sinisa Milivojevic
Scott Gerhardt writes: > I was just wondering what the "USAGE" privilege is good for and where it > would be used? > > Pauls's book says that USAGE is a special "no privileges" privilege. > > > ___ > > Scott A. Gerhardt P.Geo. > Gerhardt Information T

GRANT Privileges

2001-01-26 Thread Scott Gerhardt
I was just wondering what the "USAGE" privilege is good for and where it would be used? Pauls's book says that USAGE is a special "no privileges" privilege. ___ Scott A. Gerhardt P.Geo. Gerhardt Information Technologies [EMAIL PROTECTED] ___