Top "Grant" questions

GRANT is a SQL standard command that authorizes one or more users to perform an operation or a set of operations on an object.

grant remote access of MySQL database from any IP address

I am aware of this command: GRANT ALL PRIVILEGES ON database.* TO 'user'@'yourremotehost' IDENTIFIED BY 'newpassword'; But then it …

mysql grant
How can I list ALL grants a user received?

I need to see all grants on an Oracle DB. I used the TOAD feature to compare schemas but it …

sql oracle grant
Permission denied for relation

I tried to run simple sql command: select * from site_adzone; and I got this error ERROR: permission denied for …

postgresql privileges postgresql-9.2 grant
How to grant remote access permissions to mysql server for user?

If I do SHOW GRANTS in my mysql database I get GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' IDENTIFIED BY …

mysql connection grant
Give all the permissions to a user on a DB

I would like to give an user all the permissions on a database without making it an admin. The reason …

sql postgresql ddl privileges grant
How to grant remote access to MySQL for a whole subnet?

I can easily grant access to one IP using this code: $ mysql -u root -p Enter password: mysql> use …

mysql grant
Granting Rights on Stored Procedure to another user of Oracle

I am a student of Undergraduate studies , and I am facing little problem in granting rights of ownership to a …

oracle stored-procedures grant owner rights-management
Grant all on a specific schema in the db to a group role in PostgreSQL

Using PostgreSQL 9.0, I have a group role called "staff" and would like to grant all (or certain) privileges to this …

postgresql database-design roles privileges grant
What GRANT USAGE ON SCHEMA exactly do?

I'm trying to create for the first time a Postgres database, so this is probably a stupid question. I assigned …

database postgresql schema grant database-permissions
Grant SELECT on multiple tables oracle

I have 3 tables table1,table2,table3. I want to grant(select for example) these tables to a user, user1. I …

select oracle11g grant