RE: granting privileges using wildcards

2003-03-28 Thread Black, Kelly W [PCS]
t: Re: granting privileges using wildcards On Wed, 26 Mar 2003 14:37:33 -0800 Jennifer Goodie wrote: > To answer the original question, I have tried a lot of different ways, but > the only solution I have found is granting on the entire database or > specifing each table in the table

RE: granting privileges using wildcards

2003-03-27 Thread Black, Kelly W [PCS]
27;t seem to work in this instance. Has anybody had any success with it? -Original Message- From: Black, Kelly W [PCS] [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 26, 2003 11:14 AM To: 'Dimitar Haralanov'; [EMAIL PROTECTED] Subject: RE: granting privileges using wildcards

RE: granting privileges using wildcards

2003-03-26 Thread Jennifer Goodie
ccess with it? -Original Message- From: Black, Kelly W [PCS] [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 26, 2003 11:14 AM To: 'Dimitar Haralanov'; [EMAIL PROTECTED] Subject: RE: granting privileges using wildcards I think this might do what you want, but then you will be

Re: granting privileges using wildcards

2003-03-26 Thread Dimitar Haralanov
On Wed, 26 Mar 2003 14:37:33 -0800 Jennifer Goodie wrote: > To answer the original question, I have tried a lot of different ways, but > the only solution I have found is granting on the entire database or > specifing each table in the tables_priv table. I go with the second option >

RE: granting privileges using wildcards

2003-03-26 Thread Black, Kelly W [PCS]
I think this might do what you want, but then you will be required to log in with the -p syntax... GRANT SELECT on *.* TO yourlogin@'%' IDENTIFIED BY "somepassword"; FLUSH PRIVILEGES; mysql -u youruserid -p -h hostname dbasename Regards, Kelly Black Linux was very clearly the answer, but what

Re: granting privileges using wildcards

2003-03-26 Thread David T-G
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Dimitar -- ...and then Dimitar Haralanov said... % ... % Basically, is something like the following possible? % % GRANT SELECT ON db.table_% TO user@'%' IDENTIFIED BY 'pass'; AFAIK it is not. See Benjamin's quite thorough response to my

Re: granting privileges using wildcards

2003-03-26 Thread Mihail Manolov
Is there a reason for not using tables_priv table for this purpose? Mihail - Original Message - From: "Dimitar Haralanov" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, March 26, 2003 2:29 PM Subject: Re: granting privileges using wildcards On Wed

Re: granting privileges using wildcards

2003-03-26 Thread Dimitar Haralanov
On Wed, 26 Mar 2003 13:14:09 -0600 Black, Kelly W [PCS] wrote: > I think this might do what you want, but then you will be required to log > in with the -p syntax... > > GRANT SELECT on *.* TO yourlogin@'%' IDENTIFIED BY "somepassword"; > > FLUSH PRIVILEGES; > > mysql -u