Tagged 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.

learn more… | top users | synonyms

6
votes
2answers
3k views

Why is a “GRANT USAGE” created the first time I grant a user privileges?

I'm new to the admin side of DBMS and was setting up a new database tonight (using MySQL) when I noticed this. After granting a user a privilege for the first time, another grant is created that looks ...
4
votes
2answers
298 views

Column-level privileges vs. legacy application

I got a request to implement Column-level privileges, for example: GRANT UPDATE("column1") ON "TABLE" TO ROLE; But I found that client applications ( in Delphi+ODAC ) always emits SQL updates ...
3
votes
4answers
186 views

How to write good Mysql grants scripts

I'm using scripts to create Mysql databases and tables. Those scripts contain grant sections like the following: GRANT SELECT ON my_database.* TO my_user@"%" IDENTIFIED BY 'my_password'; REVOKE ALL ...
3
votes
1answer
66 views

What privileges should I grant to my InnoDB MySQL user?

I've a MySQL user (InnoDB engine) and I was wondering what would be the safe privileges to grant for it? Currently I've granted it permission to access the specific database and these privileges: ...
3
votes
2answers
605 views

MySQL grant all privileges to database except one table

I've been unable to find a reasonable solution to achieve the following: I wish to have a user that has ALL privileges on a database (or series of databases with the same schema), except for one ...
3
votes
1answer
638 views

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 PASSWORD 'some_characters' WITH GRANT OPTION If I am not mistaken, root@localhost ...
3
votes
1answer
2k views

GRANT with database name wildcard in MySQL?

I want to create a user 'projectA' that has the same permissions to every database named 'projectA_%' I know its possible but MySQL doesn't like my syntax: grant all on 'projectA\_%'.* to ...
3
votes
2answers
11k views

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 does not shows temptable grants etc. so there's my question: How can I list all grants on a Oracle DB?
2
votes
1answer
23 views

which privileges should be set for website database user / client in mysql

So what privileges should be set for the mysql user that is to be used as 'main' user for the website? I'm thinking data and structure ( see below ) for the database that is used should be set. But ...
2
votes
3answers
129 views

Grant access to subset of table to user on PostgreSQL

I know that I can use views to grant access to a subset of attributes in a table. But how can I grant access to particular tuples only? Say I have a table of registered students, a username attribute ...
2
votes
3answers
412 views

how to select a Oracle schema-specific view from another schema

Suppose I'm logged in as USERA, I want to access all the user_* views of the USERB schema, such as user_tables, user_tab_columns. How can I do this? Thanks
2
votes
2answers
976 views

Granting Rights on Stored Procedure to another user of Oracle

Greetings, I am a student of Undergraduate studies , and I am facing little problem in granting rights of ownership to a user A to a stored procedure being owned by user B in database Oracle 10g mode ...
2
votes
2answers
188 views

Oracle Create View issue

Hey guys. So, I am logged in as the dba account and I want to create a view in User1's schema, but selecting data from User2's. I used the following query: CREATE OR REPLACE VIEW User1.NewView ...
2
votes
2answers
915 views

Why is GRANT not working in MySQL?

I'm scratching my head on this one as I see a ton of helper websites showing how to create MySQL users and grant privileges but for some reason it just does not work for me. I tried on both WinXP and ...
2
votes
1answer
303 views

grant select for temporary table in MySQL

I have a MySQL DB with a user that has access only a few tables. This user has been granted CREATE TEMPORARY TABLES for this database and by watching the query logs, I can see them create a temporary ...
2
votes
3answers
99 views

Problem starting up mySQL

I just downloaded PHP and I tried running mySQL with the command: C:\Program Files\EasyPHP-5.3.2i\mySQL\bin\mysql.exe And I got the error: ERROR 1045 (28000): Acess denied for user ...
2
votes
3answers
488 views

ORACLE :Are grants removed when an object is dropped?

I currently have 2 schemas, A and B. B has a table, and A executes selects inserts and updates on it. In our sql scripts, we have granted permissions to A so it can complete its tasks. grant select ...
2
votes
3answers
503 views

References style without line breaks

I'm writing a grant application and space is at a premium. I want LaTeX to print my references section without line breaks, so References [1] [2] [3] becomes References [1], [2], [3] I ...
2
votes
2answers
22k views

Oracle - How to grant to a user the rights to another user's objects

I need to give to user TARGETUSER the rights to select/insert/update to all tables of user SOURCEUSER (I can figure this all out from here) and the ability to run all their stored procedures. ...
2
votes
6answers
720 views

alter index across schemas

I am synchronizing tables using a stored PL/SQL procedure as part of a web application - when they hit a button it does the sync. The PL/SQL is executing as user A, but needs to disable indexes and ...
2
votes
9answers
22k views

Oracle database role - select from table across schemas without schema identifier

Which Oracle database role will allow a user to select from a table in another schema without specifying the schema identifier? i.e., as user A- Grant select on A.table to user B; B can then- ...
2
votes
3answers
16k views

Correct way to give users access to additional schemas in Oracle

I have two users Bob and Alice in Oracle, both created by running the following commands as sysdba from sqlplus: create user $blah identified by $password; grant resource, connect, create view ...
1
vote
1answer
42 views

Minimum GRANTs needed by mysqldump for dumping a full schema? (TRIGGERs are missing!!)

I have a MySQL user called dump with the following perms: GRANT USAGE ON *.* TO 'dump'@'%' IDENTIFIED BY ... GRANT SELECT, LOCK TABLES ON `mysql`.* TO 'dump'@'%' GRANT SELECT, LOCK TABLES ON ...
1
vote
1answer
53 views

How do I create a mysql view with a user variable in the name

I'm using mysql 5.5, trying to write a script to create users, views, and grant select privileges on those views. Here's what I have so far. set @type_id := 1; set @username := 'somecompany'; set ...
1
vote
0answers
52 views

Tomcat Deploy fail in free.hostingjava.it

I am using free.hostingjava.it for my application, but when try to deploy the web app, it gives me an exception: Caused by: java.security.AccessControlException: access denied ...
1
vote
0answers
48 views

Grant execute privilege on specific database

I tried granting the execute privilege for a specific user on a specific database using the following: GRANT EXECUTE ON `databasename`.* TO 'user'@'12.345.67.89'; It appears to complete ...
1
vote
1answer
37 views

how do I execute a 'GRANT SELECT ON' statement using pyodbc

I am working with hundreds of msaccess databases. I am trying to build a summary of databases, tables and other objects. To find out all the tables and objects in a given database, I use the query ...
1
vote
1answer
79 views

DB2: GRANT statement & access rights

What rights should I give to DB user to execute REFRESH TABLE SOME_MQT; statement? Is it enough GRANT ALL ON SOME_MQT TO USER %USER_NAME ? DB2 version: 9.5.3
1
vote
3answers
105 views

MySQL grant ineffective?

Okay, I'm perplexed. I'm getting an "Access denied" error trying to do an update. There's a grant to allow that user to perform an update on that table, but it's being denied anyway. Yes, I've tried ...
1
vote
1answer
108 views

Query GRANTS granted to a sequence in postgres

To query GRANTS granted to a table I can use a query like: SELECT grantee, privilege_type FROM information_schema.role_table_grants WHERE table_name='mytable' (see my old question here: Query ...
1
vote
2answers
59 views

Query grants for a table in postgres

How can I query all GRANTS granted to an object in postgres? For example I have table "mytable": GRANT SELECT, INSERT ON mytable TO user1 GRANT UPDATE ON mytable TO user2 I need somthing which ...
1
vote
1answer
50 views

Oracle view and grant question

How can I use grant and creation of a view to allow a user to have read only access to certain columns in a table but also be allowed to update only one of the columns? Can you specify a specific ...
1
vote
1answer
119 views

SQL Server revoking select

Let's suppose a user, "Bob", gets SELECT privilege from John and Bob also gets SELECT privilege from another user Joe but this time with GRANT option. What happens if someone revokes the select ...
1
vote
1answer
188 views

Grant select on views which use functions

I'm using postgresql 8.4 and am having a bit of a problem granting select privileges on a view from a database onwed by a different user when the view uses any of the databases functions. As the new ...
1
vote
2answers
515 views

Grant Select, Insert, Update to a Tablespace

I've got a lot of tables in a tablespace, nearly 100. I have to grant Select, Insert, Update privileges on all those tables to a user. Is it possible? When I write: GRANT USE OF TABLESPACE ...
1
vote
1answer
246 views

Postgres unable to create db after granting privs to role

I'm sure I'm missing something simple, but I've created the following: postgres=# \du List of roles Role name | Attributes | Member of ...
1
vote
1answer
45 views

Views with Granted Select/Insert Permissions

I'm working on an Oracle9i server in college. I have granted my friend select and insert permissions on a view 'v1'. He is able to select and insert on the view,but apparently the view maintains a ...
1
vote
1answer
204 views

MySQL Grant User Privileges Error

I have a question regarding how to grant privileges MySQL user accounts. I have a MySQL user account, and in my example code I would like to grant privileges to the whole database. When I run the ...
1
vote
2answers
317 views

Grant privileges on several tables with specific prefix

I'm using the table prefix method for having several clients use the same database. The number of tables created per client will be ~55. Instead of doing all of the granting by manually listing out ...
1
vote
1answer
392 views

How to grant user access to additional tablespaces in Oracle?

I want to know How to grant user access to additional tablespaces in Oracle? , because I have created two additional tablespaces, one for data and the other for indexes, like this discussion said: ...
1
vote
1answer
89 views

Can GRANT be used inside an Oracle Store Procedure?

When trying to place a GRANT statement in an Oracle 11 stored procedure, it reports that GRANT is an unexpected symbol. Does GRANT need to be prefaced by something, or does Oracle simply disallow ...
1
vote
1answer
108 views

MySql - create views with multiple definers

It's possible? How? I didn't find anything useful googling at, just this unanswered question: http://forums.mysql.com/read.php?100,215785,215785 Just to clarify, i have to reach this view from an ...
1
vote
1answer
357 views

Grant EXECUTE to many PostGIS functions

I have a Web Application which is based on MapServer, which uses PostGIS as underlying database extension. Now I want to have a dedicated database role which is used for MapServer, cause I don't want ...
1
vote
2answers
2k views

Grant a user permission to only view a mysql view

I'm using MySQL 5.1.44, let's say I have a table with records inserted by different users of my application, how can I give some specific user access to only see his records on the table? I've think ...
1
vote
6answers
219 views

Oracle grant concession and side effects

Working every day on a large Oracle production database (10g), we noticed that operations like granting an user read privileges on a table creating a trigger on a table lock that table, and ...
1
vote
2answers
286 views

MySQL Grant Problem

Why might the following grant statement fail to work? grant all on kylie.* to 'kylie'@'localhost' identified by 'foo'; Here's the complete output. $ mysql -A Welcome to the MySQL monitor. ...
1
vote
5answers
309 views

How to make a GRANT persist for a table that's being dropped and re-created?

I'm on a fairly new project where we're still modifying the design of our Oracle 11g database tables. As such, we drop and re-create our tables fairly often to make sure that our table creation ...
1
vote
0answers
199 views

Deny Drop DB Objects in Sql Server 2008

I need help to set GRANT CREATE, ALTER BUT DENY DROP DB Objects to db users using sql server 2008. I've tried this but it returns error: use DBName GO DENY DROP TO dbUser Error: Incorrect syntax ...
1
vote
1answer
241 views

Oracle vocabulary, what is the mysql/SQL Server equivalent of a database

I need some help with vocabulary, I don't use Oracle that often but I am familiar with MySQL and SQL Server. I have an application I need to upgrade and migrate, and part of the procedure to do that ...
1
vote
3answers
751 views

Regenerate GRANTs for roles across schemas

Similar to this question, I would like to know how to generate all GRANT statements issued to all roles in a set of schemas and a list of roles whose names end in "PROXY". I want to recreate ...

1 2