Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
1answer
109 views

Allowing a stored procedure to select from a system table using a certificate in SQL Server 2012

I'm currently having issues relating to permissions when attempting to run a stored procedure that tries to select from a system table. Basically I'm trying to work around the deprecation of the ...
6
votes
4answers
4k views

Postgresql: is better using multiple databases with 1 schema each, or 1 database with multiple schemas?

After this comment to a my question, im thinking if is better using 1 database with X schemas or viceversa. My situation: im developing a web-app where, when people do register, i create (actually) a ...
4
votes
2answers
11k views

no pg_hba.conf entry for host

I am new to Perl as well as Postgresql I get following error when i try to connect using DBI DBI connect('database=chaosLRdb;host=192.168.0.1;port=5433','postgres',...) failed: FATAL: no ...
4
votes
3answers
7k views

The error “Login failed for user 'NT AUTHORITY\IUSR'” in ASP.NET and SQL Server 2008

My ASP.NET v3.5 web application is throwing the following exception when it attempts to open a connection to a SQL Server 2008 database: System.Data.SqlClient.SqlException: Cannot open database ...
4
votes
5answers
4k views

ASP.Net Membership.DeleteUser

In testing, the user on a db i've used was a big jefe. in production, he only has Execute. When i called Membership.DeleteUser(user) in testing, it worked. I try the same in production, and i ...
3
votes
2answers
47 views

What permissions to 'real' databases grant users?

In reading @PerformanceDBA's answer to Historical / auditable database he made this statement: In a real (standard ISO/IEC/ANSI SQL) database, we do not GRANT INSERT/UPDATE/DELETE permission to ...
3
votes
1answer
141 views

Efficiently determine owner of a record in a hierarchy with MongoDB

I am trying to achieve the following: Select all the records that I own, where ownership is objects I have created OR objects a user I manage has created, where user management can be in a ...
3
votes
2answers
287 views

CouchDB read/write restrictions on _users database

I would like to restrict the user permissions so that a normal user is only able to read/write its own user document. I managed to set the write permissions such that a user can only edit their own ...
3
votes
3answers
4k views

Creating a SQL Server user with permission to read one view and nothing else - but he can see system views and procedures?

My company hired a contractor to do a small project for us, for which he needs to select data from one single view in our main database (SQL Server 2005). I wanted to create a locked-down SQL Server ...
3
votes
2answers
373 views

What permissions should SQL Server User be granted for LinqToSql?

I am using LinqToSQL and a trusted connection to handle database selects/updates/inserts/deletes. In the past I have always used stored procedures and only granted execute permission to the ...
3
votes
3answers
3k views

Why can't a stored procedure read a table from another database (I must be using GRANT and DENY wrongly)

I have two Microsoft SQL Server 2000 databases, and a stored procedure on one tries to read data from the other. This used to work fine, but since I became security-conscious and changed the login ...
3
votes
6answers
4k views

PHP Access Control System

I am part of a team creating a web application using PHP and MySQL. The application will have multiple users with different roles. The application will also be used in a geographically distributed ...
2
votes
3answers
109 views

SQL Server Disabling All Triggers - Cannot find the object “XXXX” because it does not exist or you do not have permissions

I'm trying to run this command in SQL Server: disable trigger all on MYDB This is failing for me. The account I'm logged into has access to MYDB and I've pretty much giving it every single ...
2
votes
1answer
501 views

Cannot find the symmetric key in SQL Server 2008

I have a permissions issue with regard to using a symmetric key under a specific user name when a stored procedure is executed. Despite running GRANT CONTROL ON CERTIFICATE::myCert TO myUser GRANT ...
2
votes
3answers
1k views

How to give access to SQL Server database mail procedures for a Login in a different database?

I'd like to know how to set up permissions within SQL Server to allow my application Login/Role to be able to send email using msdb.dbo.sp_send_dbmail. I have a database MyDb, a user MyUser who is a ...
2
votes
1answer
128 views

Can't connect to mysql because there are no users

I mistakenly removed all users for mysql ... So I can't connect to mysql. Does anyone has an idea ? I tried reinstalling it but it didn't work ... PS : I am on Archlinux. Thanks in advance !
2
votes
5answers
608 views

Sql server execute permission; failure to apply permissions

I've just migrated from SQL2000 to SQL2008 and I have started getting an execute permission issue on a stored proc which uses sp_OACreate. The rest of the system works fine with the db login which ...
2
votes
5answers
332 views

Prevent SQL Server Table operations (INSERT and DELETE) on some tables

While working with some random sql queries on our databases, we may not want to insert or delete items to some of the database tables by just typing their names by mistake. So how to make them locked ...
2
votes
2answers
7k views

SQL Server 2005 - Granting permission to create stored procedures (but no other objects)

I want to grant a user permission to create, alter, and execute stored procedures, but without the ability to create other database objects. I excluded them from the role db_ddladmin, but explicitly ...
2
votes
4answers
3k views

Limit Database List to Ones With Permission SQL Server

By default if you connect to a remote SQL Server via an account that has access to say 1 of the 10 databases. You will still see in the Object Explorer all other databases, obviously due to ...
1
vote
4answers
70 views

Why did PostgreSQL merge users and groups into roles?

From the PostgreSQL docs: The concept of roles subsumes the concepts of "users" and "groups". In PostgreSQL versions before 8.1, users and groups were distinct kinds of entities, but now there ...
1
vote
2answers
32 views

Retrieve all tables selectable by a user (in Oracle)

How can I retrieve a list of all tables to which a user is has SELECT permission (either granted directly or through an assigned role)?
1
vote
3answers
66 views

Applying least privilege to database connections

I've noticed that most FOSS applications (Wordpress, for example) only uses a single set of database credentials that have been granted all permissions. This seems like it violates the principle of ...
1
vote
1answer
52 views

Django-guardian on DB with shared (non-exclusive) access

I am developing a Django app being a Web frontend to some Oracle database with another local DB keeping app's data such as Guardian permissions. The problem is that it can be modified from different ...
1
vote
1answer
190 views

Permission Issue for SQL Server 2008 Stored Procedure Using Encryption

I have arranged a database with three schemas. Under Database User, I have ticked the three schemas as Owned Schemas of the user I'm connecting via (thought it was a good idea at the time). However, ...
1
vote
1answer
116 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
2answers
249 views

SQL Server 2008 Grant Select Permission

I am having trouble adding a user to a test database I set up on my local machine. I have added the user fine but the user does not have permission to SELECT (Or anything else for that matter) on the ...
1
vote
2answers
304 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
2answers
243 views

SQL Server 2008 EF 4 - limiting database records returned using permissions?

In our database all tables are linked back to a single table. This table has a bit column to limit whether the record is displayed. Currently the records are filtered on the code side of the website. ...
1
vote
1answer
260 views

List of tables that a user has SELECT privilege for in MySQL

Short version: How can I write an SQL procedure to list which of several tables in a MySQL database a particular user has access to? Longer version: I'm writing a multi-user app that accesses a ...
1
vote
3answers
116 views

Disable all operations (inluding listing with psql -l) on not owned databases for a role?

We are running PostgreSQL 8.3 as the DB server for our ERP system. So far there was no necessity to create different databases under different users (roles in terms of 8.3) in postgres. And now it has ...
1
vote
1answer
322 views

SQL Server: permissions to read database diagrams for user that has 'read-only' access

Here I asked what are permissions to read database diagrams: SQL Server: permissions to read database diagrams Suggested answer is "db_owner" role... But in this case user will OWN DB. Is it ...
1
vote
4answers
150 views

SQL Server: protect database from being changed directly

Our program ships with an SQL Server 2005 database and SQL Server 2005 Express. Usually it installs its own instance of SQL Server 2005 in the client's computer. Now I have to add some tables whose ...
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
2answers
578 views
1
vote
2answers
71 views

Database permissions and ORMs

I've been using .NET's Entity Framework a lot lately and have absolutely no wish to go back to using Stored Procedures. Been shocked though that the company I'm building this project for had a policy ...
1
vote
1answer
301 views

CakePHP: What to use for MySQL users & permissions?

I'm getting ready to deploy a CakePHP site for the first time. I'm using the site with a MySQL database, and I'm still a little unclear about the proper use of users & permissions for MySQL -- I'm ...
1
vote
1answer
207 views

SQl server 2008 permission and encryption

i have made columns in some of the tables encrypted in sql server 2008. Now as i am a db owner i have the access to encode and decode the data using the symmetric key and certificate. But some other ...
1
vote
4answers
769 views

SQL Server - Limit the databases view based on login

I have a situation where I want to limit the database view per user login. For example: I have 3 databases in my SQL Server instance called MyDB, UserDB, RestrictedDB. I then create a 2 logins; ...
1
vote
3answers
293 views

Database Permission Structure

Many of my employers applications share a similar internal permission structure for restricting data to a specific set of users or groups. Groups can also be nested. The problem we're currently ...
1
vote
3answers
695 views

How do you store database credentials in typical CMS build on PHP?

What's the best practice to store database credentials in a CMS? Now i declare them in my Database singleton class: $this->credentials = array("hostname"=>"hostname", ...
1
vote
1answer
1k views

Permission rights for SQL login accessing Database for ASP.Net Application

I always wonder what are the exact access rights and permissions I need to give to a sql login which I use from my asp.net application to access database. The application execute some stored ...
1
vote
3answers
2k views

Hibernate: Is there a way to programatically create new tables that resemble an existing one?

I have a web app that have many tables (each represents a POJO). I wrote mapping files for each class and then use Hibernate's SchemaExport to generate the tables in my database. Now I want to create ...
1
vote
6answers
4k views

User Granted Access to Stored Procedure but Can't Run Query

I am working on a product that runs an SQL server which allows some applications to login and their logins are granted permission to run a stored procedure- AND NOTHING ELSE. The stored procedure is ...
0
votes
1answer
16 views

Update statement with nontouchable field

I have mssql2008 r2 sql server The problem: User has some column permissions on the table. He could update some of the columns of the table (not all). We need to create UPDATE statement so that it ...
0
votes
1answer
48 views

DotNetNuke initial installation security best practice

I've installed several DotNetNuke sites on Windows Server 2008. What I'd like to know is how the various security entities should be configured together. For example, some installation references ...
0
votes
0answers
63 views

What permissions are needed to run an import inside a procedure with dbms_datapump?

I'm running the following procedure: create or replace procedure PROC_IMPORT_ARCHIVE( in_filename in varchar2 ) is l_dp_handle number; job_state VARCHAR2(30); sts ku$_Status; begin ...
0
votes
0answers
34 views

How to set permissions to refer to multiple databases in a single query (SQL Server)

I have two databases on the same SQL Server, and they have the same table structure. Database2010 is populated with data and Database2007 is empty. I need to write a SQL statement that will copy the ...
0
votes
0answers
31 views

How to drop and create a table with DB permissions? [closed]

I am having to move a table from one DB to another. Both databases have the same roles and permissions. This table has CRUD rights ( INSERT, SELECT, UPDATE, DELETE ) permissions for 2 rolls and 6 ...
0
votes
1answer
106 views

SQL Server 2008 Multi-database Permissions via role or schema or scripting

Let's say that there are multiple users in my office that need access to multiple databases that are dependent upon each other. I have users who are sysadmins but as more employees are added I want ...

1 2