Viewing 15 posts - 481 through 495 (of 1,219 total)
You say that the error is on a certain line in a web script where there is a call to a stored procedure which is in "another database".
But is the...
March 1, 2014 at 3:00 am
So how does that piece of code look like? What line does the error message point to?
By chance, does the procedure have an EXECUTE AS clause?
February 28, 2014 at 4:06 pm
Make sure that SQL Server is running.
Make sure that you actually installed it with the instance name SQLEXPRESS.
And make sure that you actually have SQL Server on the same machine...
February 26, 2014 at 2:59 pm
I found https://connect.microsoft.com/SQLServer/feedback/details/797967/ssms-create-script-duplicates-the-statements-for-grant-or-deny-column-permissions and the response from Microsoft is that this has been fixed. I have not made research to see if the fix is included in any of the...
February 26, 2014 at 2:56 pm
Lowell (2/20/2014)
I don't believe the permissions are that granular; as i understand it, once you grant ALTER, that's ALTER any object.
That is correct. If you have ALTER on a schema,...
February 20, 2014 at 1:58 pm
I think the only reasonable way to achieve this is to create a schema for this purpose, and then grant the users CREATE TABLE permission on database level and ALTER...
February 20, 2014 at 1:49 pm
Johnny Ed (2/18/2014)
We have several environments that have distinct AD login principles for each environment (e.g. COMPANY\user_basic_dev or COMPANY\user_basic_prod).
Are these groups or logins in the AD?
1. Move all explicit object...
February 18, 2014 at 3:03 pm
No, that was not the fix! That can be a huge security problem!
Setting a database as trustworthy is OK, if everyone who has db_owner or db_securityadmin access in the database,...
February 18, 2014 at 2:59 pm
The question is not entirely easy to answer, and ultimately it depends on why you want to give developers VIEW SERVER STATE and how much you trust them.
With VIEW SERVER...
February 15, 2014 at 6:41 am
This question was also posted on the MSDN forums,
February 5, 2014 at 3:55 pm
So all these child databases are all for the same client, and you have set of such databases per client? In that case, it certainly makes more sense.
But the child...
February 5, 2014 at 1:48 pm
So these 10 databases have the same set of tables, with each database serving a specific client?
I am not sure that I think it is a wise move to put...
February 5, 2014 at 1:14 pm
I don't what this xx_execprocs did, but maybe they had EXECUTE AS = 'xx_execprocs' in some parent procedure. As they grant EXECUTE permission, I suspect that they had a broken...
January 29, 2014 at 1:42 pm
When you use EXECUTE AS for a stored procedure you impersonate a user, and when you impersonate a user you are sandboxed into the current database. There are ways to...
January 29, 2014 at 1:15 pm
First of all, don't grant access the individual developers. Grant access to roles or Windows groups. If you grant the exec etc access to a role, all you need to...
January 28, 2014 at 1:02 pm
Viewing 15 posts - 481 through 495 (of 1,219 total)