The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
15 views

Read only SQL Server 2005 permission but allow stored procedure view

I have a SQL Server 2005 database and I need to be able to grant a user(someday a group) read only database permissions with the ability to view but not run or modify stored procedures across over a ...
2
votes
1answer
35 views

Error: Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON'. in VB.Net

Although I found many posts with this same error, I couldn't find if my error is fixable or not. There is a database which I have read permission with my window login on the network. I just use SSMS ...
0
votes
0answers
13 views

Why isn't runas allowing me to access MSSQL server?

Just recently, I've been unable to use a runas command to run visual studio 2012. It's strange because I've done it before without issue. The runas command has worked in the past, and continues to ...
0
votes
1answer
24 views

Only allow update to another schema within a trigger

I'm using Oracle 11gR2, and I have two schemas -- A and B, and each has a similar CUSTOMER table. When B.CUSTOMER is updated, I want the same updates to happen to A.CUSTOMER. Schema A has full ...
0
votes
0answers
5 views

Where should I look in the Event Viewer for an 'access denied' to a sql2012server log?

This question derives from Deploying a new database on a new server, an msbuild ssdt rookie issue Since I have a permission denied I expect to find which user is failing to acces so I can grant it. ...
1
vote
1answer
40 views

User has permissions problems with SPROC even after granted permissions to all DB items

The MetricsUser account receives the following error when executing a stored procedure: "Msg 1088, Level 16, State 7, Procedure Data_SPROC, Line 59 Cannot find the object ...
0
votes
0answers
15 views

Why does the mysql % permission not work for all remotes on EC2?

I had a mysql admin issue with permissions on % hosts. EC2_DB launched with IP 10.55.142.100 and DNS ip-10-55-142-100.ec2.internal EC2_web launched with IP 10.55.142.144 and DNS ...
0
votes
1answer
102 views

bcp out to master..XP_cmdshell stored procedure not working when executed from excel

I have a stored procedure that uses bcp to create csv files executed in the cmdshell. When I run the stored procedure in sql server 2012 it executes like I need it to. But when I run it from excel VBA ...
0
votes
1answer
58 views

implementing Access Control Lists vs using database roles and users

First off before you grill me to the floor, i would like to say i have spent considerable amount of time reading and researching this topic. I have read some on stackoverflow itself such as ACL ...
1
vote
1answer
357 views

copy failed: java.io.FileNotFoundException: /data/data/packagename/databases/databasename.sqlite: open: failed: EACCES (Permission denied)

I have a problem with Nuxus 10 with normal user when they install my app and after run....and then it shown error java.lang.Error: Error copying database => java.io.FileNotFoundException: ...
3
votes
2answers
40 views

can a SQL Server stored proc execute with higher permission than its caller?

Our SQL Server database has a reporting feature that allows callers to read, but not write, any table, because the user (or, more precise, the connection opened by the web app that's operating on ...
1
vote
2answers
130 views

database permissions match whoever is running PowerShell script instead of those specified in connection string

I want SQL Server permissions to conform to the ID I specify in the connection string, NOT those of whoever happens to be running the PowerShell script (usually me). For example, I have a table ...
0
votes
1answer
53 views

C# and MySQL Connectors

Developing an application for a client that when users log off, it runs the program. The program so far grabs all the users internet browsing history and puts it to a html file, but they want to ...
0
votes
0answers
12 views

temporary tables not working if database dont have insert permission

In my application i have used temporary tables but now my database server has been changed and new server don't have insert permission for tables.Now my temporary tables not working. Is it possible ...
1
vote
2answers
43 views

MySQL Grant permission based on column value?

I am trying to grant access permissions to a certain user who has 'manager' access. They are able to SELECT and UPDATE but only to the people in their own group. The DB is redflame and the table is ...
0
votes
1answer
66 views

How to add SQL LocalDB permissions

I.. "accidentally" removed my database permissions for my windows login to localdb Any idea how to give permissions back to that database?
0
votes
2answers
128 views

App Pool User Unable to Execute Stored Procedure

Background I'm using SQL Server 2008 R2's full text search to retrieve a number of documents, and wish to use the results of sys.dm_fts_parser to highlight the matching terms. Doing that ordinarily ...
0
votes
0answers
9 views

Separate application and SSMS privleges SQL

I have an application which requires access to SELECT, UPDATE, DELETE, INSERT, ALTER against the DB. I would like to give users access to only SELECT data from running manual scripts within SSMS. Is ...
0
votes
1answer
40 views

CanCan best practice : automatically grant db-based permissions on creation

I use CanCan and a Permission model to manage permissions on a Folder model. When a user creates a folder, i want to create a permission to write for this user on the folder (i.e. create a permission ...
0
votes
0answers
45 views

RAISERROR with >20 Severity and Database Permissions

I'm attempting to deploy an INSTEAD OF trigger to a Sql Azure db. Among other things, it can potentially execute the following line: raiserror('error text', 20, 1, @somevar) with log; Anything with ...
-2
votes
4answers
63 views

Disallow INSERT in php code [closed]

Is there a way to allow only SELECT, disallow insert/update/truncate/drop etc queries on PHP level (not on MySQL level)? UPDATED: Queries can be written by users of my application. They can insert ...
0
votes
1answer
114 views

Do I need to grant EXECUTE rights on a function that is called from a stored procedure?

I have a SQL function that is only called from inside another stored procedure. I have granted EXECUTE rights for the stored procedure that calls the function. Do I need to grant EXECUTE permissions ...
2
votes
1answer
42 views

Is there a recommended practice or framework to achieve record-level-permission for google-app-engine db.Model/ ndb.Model)?

Is there a recommended practice or framework to achieve record-level-permission and attribute level visibility with google-app-engine db.Model (and/or ndb.Model) ? I have read about model-hooks, but ...
0
votes
2answers
417 views

Listing table results in “CREATE TABLE permission denied in database” ASP.NET - MVC4

I'm using ASP.NET MVC 4 - c# to connect to a live database, and list the results, however when I go to view the page it returns the following error: CREATE TABLE permission denied in database ...
0
votes
1answer
125 views

How to add Active Directory user group as login in Tabular Model Database in SQL Server 2012

I need to give a 'Active Directory User Group' read access to a tabular model database. I am not able to find the group when searched, to add it to a role. As mentioned here for a database instance, ...
0
votes
1answer
83 views

Enabling SQL Server Roles [closed]

I have installed an SQL Server 2012 with Windwos Authentication only. Now I need to enable the sa account (which I've done that one) and all the server roles (e.g. sysadmin). I used this sql statement ...
0
votes
1answer
494 views

User does not have permission to alter database

I am using MVC 4, Entity Framework 5, and the Code First approach. When I make changes to my model and run the application I get an error about not being able to drop the database because it is in ...
0
votes
1answer
158 views

On calling a stored procedure of two different schema stored procedure of secont one not getting executed

Connection connection = DriverManager.getConnection(DB_URL,userName,passWord); ArrayDescriptor des = ArrayDescriptor.createDescriptor("ARRAY_TABLE", connection); ARRAY ...
0
votes
1answer
144 views

Specifying granted permissions to SQL CLR User Defined Functions for deployment

I have created a user defined function in .NET 2.0 and am able to successfully deploy it to my local SQL Server instance. However, I need to grant a specific user EXECUTE permission on the function. ...
-2
votes
1answer
149 views

“PL/SQL: Statement ignored” error in Java

When I call a PL/SQL of particular schema in Java file it is getting executed and retrieves the result. But when I call another PLSQL in the same Java file of different schema it shows an error ...
2
votes
1answer
78 views

Can't alter MySql routine

I am logging in with my main DB user, into Phpmyadmin page/ workbench remote access application and I have permissions issues. It all started when I tried to alter routines that I have stored in the ...
0
votes
2answers
48 views

Prevent a particular table being modified in SQL by a particular user

As the title says, however i have tried everything to prevent a user from modifying this table with no luck For some reason DENY do not exist in the mySQL 5.5 manual so the following doesn't work ...
2
votes
1answer
74 views

Error accessing stored procedure

We have a .NET3.5 Windows Forms application that calls an ASP.NET SOAP web service on the same server. This web service then saves the data into a SQL Server Express 2005 database, again on the same ...
0
votes
1answer
204 views

How to understand Principals in SQL Server?

This sounds stupid but I find it really confusing: in MSDN the definition is the entity that can request SQL Server resources. And basically there are three types of principals: Windows-level ...
1
vote
2answers
503 views

SQL Server 2012 - File table permissions for network access

I have a sql server 2012 instance set up as a filestore on a networked server. I need all users on computers on the same network to be able to browse the file system representing the file table. ...
1
vote
1answer
1k views

java.sql.SQLException: Access denied for user 'xx@xx.xx' (using password: YES) appearing 2 years after installation

I started getting java.sql.SQLException: Access denied for user 'xx@xx.xx' (using password: YES) from a servlet when trying to add new data to a database. Irrespective of the error, the data still ...
0
votes
0answers
90 views

Authorize Remote Users to Create Database

I have a batch file to create a database out of a text file list which sql scripts to execute. it calls sqlcmd command. Now this batch file is run by Jenkins/Hudson Server. My problem now is that ...
3
votes
1answer
2k views

Why does PHP PDO get “SQLSTATE[42000] [1044] Access denied for user” when mysql command line works?

My head is bloody from how hard I've been banging it against this wall for the past several hours. :( As the title suggests, I've created a MySQL user that can access the database fine from the mysql ...
0
votes
1answer
1k views

TF246017 Error when opening TFS Administration Console

When I log on to our TFS server using my own domain account and try to open TFS Administration Console, I get the following error: TF246017: Team Foundation Server could not connect to the ...
0
votes
1answer
666 views

How do I execute a procedure in a package I just created in another schema?

Setup: I have two trees of scripts that run on Oracle 11g - one set ensures the correct instance configuration and that all of the DBA proxy accounts are there to connect to the dbadmin account, and ...
0
votes
0answers
18 views

Hosting Issues (possibly file permissions)

I made a cms system for somebody and did it on my server. It is a little system called wolf cms. Basically in a nutshell it is working perfectly fine on my server. So I copied the files and database ...
1
vote
1answer
1k views

Restricting a user to access only his own tables in Oracle SQL Developer

I am confused in the permission, privileges in the SQL Oracle Developer. The user created can access all the schema/user 's tables. I want to restrict specific user in the database to access (ALTER, ...
1
vote
2answers
406 views

ACL modeling - how to manage “hierarchy” of an Access control list?

I'm still working in my ACL project, and I'd like some ideas for the following problem: I'm using MySQL to store my users, roles and permissions. At first, I created a field "parent_id" in my TABLE ...
0
votes
7answers
505 views

Tool for editing MySQL table permissions?

Is there a tool that makes the task of editing user privileges easier on a MySQL database? I've got nearly 100 tables to work through for 4 users, each with different per-table grants, which is ...
2
votes
2answers
286 views

django-guardian example source code

Can anyone suggest a good open source app that uses django-guardian? I'm not having trouble understanding the API, but I'd love to see an example to get a feel for implementation best practice ...
1
vote
1answer
1k views

SQL Server 2008 Management studio - can't see tables, can run queries

Well, I have a database running on shared hosting and have successfully connected to it. However, i cannot see the database but when i run i.e. SELECT * FROM Item Item is a table in it, i get ...
2
votes
2answers
867 views

sql open connection in read only mode

This question comes out of curiosity. I searched google for this but didn't get a clue. Suppose a user has full read/write access to MySQL database. I am wondering, is there any way (some parameter ...
0
votes
1answer
158 views

MySQL Permissions Over User

My friend has a VPS. He trusts me and more or less will help me do anything I want to do. I am using a number of MySQL users (less privileged) and databases. For example, I am my_user, and I created ...
0
votes
1answer
693 views

Creating database role in sql server that can be mapped to multiple logins

Scenario.. 1 database role - 5 developers needs to be mapped with same access. All 5 developers must login to sql server using there own username and password. I want all these 5 developers must ...
0
votes
2answers
3k views

Permissions required to run 'ALTER DATABASE SET SINGLE_USER' statement on SQL Server 2008

I've came across the case when the following statement throws an error saying it can't be executed because of the permission: ALTER DATABASE [{0}] SET SINGLE_USER WITH ROLLBACK IMMEDIATE Couldn't ...

1 2 3