Viewing 15 posts - 16 through 30 (of 70 total)
Thanks, was it like this on previous versions as well? Can't remember seeing it
September 8, 2017 at 10:25 am
Forgot to add, even sysadmins cannot execute the procedures, am I right it saying sysadmins would always have execute rights even if its not been granted to them, we also...
June 8, 2017 at 3:44 am
Will try, just afraid that will give them access to what SuperUser has access to, so they would be able to actually open the database schema for example is superuser...
June 8, 2017 at 3:38 am
Anyone have any specifics I can check for?
In summary
We have a DB(call it DB2) where 3rd parties sign in with views pointing to other databases(call it DB1)...
June 8, 2017 at 3:12 am
I am a bit skeptical about impersonate permissions as they are on user level. Is impersonation not already built in in die stored procedure with the WITH EXECUTE AS?
June 7, 2017 at 6:26 am
Hi Lowell, did you read through the whole story from the beginning, Think this is what I have done. It is working perfectly on the one environment, on another on...
June 7, 2017 at 6:16 am
Will give it a try
June 7, 2017 at 6:02 am
When EXECUTE AS CALLER is specified, IMPERSONATE permissions are not required. -- This is why I wonder if you need impersonate access added to the Procedure
June 7, 2017 at 5:54 am
Added to that if I run this
select d.name, d.sid, s.name, s.sid
from sys.database_principals d
full join sys.server_principals s
on d.principal_id = s.principal_id
where d.name = 'SuperUser'
Columns...
June 7, 2017 at 5:51 am
Taken from Microsoft's EXECUTE AS page:
To specify EXECUTE AS on a login, the caller must have IMPERSONATE permission on the specified login name and must not be denied the IMPERSONATE ANY LOGIN permission. To specify EXECUTE...
June 7, 2017 at 5:35 am
Hi John
I am not sure I am following everything, should we be enabling guest access? Guest statuses on all userdatabases are 0
Our DBs have DB Chaining...
June 7, 2017 at 4:44 am
All Databases have the same owner. I have even tried DB_CHAINING. We do use this a bit at clients as well.. As stated before the SuperUser is db_owner(note db_owner role, not...
June 7, 2017 at 2:50 am
What is frustrating is in one environment it is working perfectly, in the others not. We have tried creating a new Super User from scratch(changing the procedure accordingly), this even...
June 7, 2017 at 2:13 am
Sorry about that, was a bit of a rush.
We have a DB(call it DB2) where 3rd parties sign in with views pointing to other databases(call it DB1) through synonyms....
June 7, 2017 at 1:17 am
Thanks, I thought it would be like that. Thanks for the confirmation
October 20, 2016 at 4:13 am
Viewing 15 posts - 16 through 30 (of 70 total)