Viewing 15 posts - 316 through 330 (of 6,105 total)
If the user is a member of a Windows group with access, yes, that'd explain why they'd see the DBs when someone who isn't a member of the group wouldn't....
July 21, 2010 at 9:32 am
Jim's method is the only real way this works, unless they create a specific group on that domain with the users who need to be blocked. That way you're applying...
July 21, 2010 at 9:30 am
SA-1 (7/20/2010)
July 21, 2010 at 9:28 am
are you running sp_setapprole in the same database where the app role was created? If you are, I'm not sure why you're getting that error. If there was a password...
July 21, 2010 at 9:26 am
Have you run a Profiler trace to ensure they're accessing the same object? Turned on the appropriate events to see exactly what error SQL Server is throwing (in case it's...
July 21, 2010 at 9:22 am
Here's an example how using a DDL trigger:
Granting limited permissions to create views in another schema in SQL Server - Part 2
July 21, 2010 at 9:18 am
RajaStyle123 (7/21/2010)
Also i'm guessing there is no way to check for XP_Cmdshell across the enterprise ?
No, there's not. You're best bet is to write a script that logs on to...
July 21, 2010 at 6:49 am
RajaStyle123 (7/21/2010)
Thanks guys for the responses ... does this refer to windows accounts or sql accounts such as sa? as the text suggests windows ... Thanks Again
The sa account is...
July 21, 2010 at 6:45 am
RajaStyle123 (7/19/2010)
July 19, 2010 at 5:24 pm
You need to check all the group membership for that login. SQL Server will look at all Windows groups that have been given access and combine the permissions. So, for...
July 19, 2010 at 2:06 pm
Use LOGINPROPERTY('LockoutTime') instead.
July 19, 2010 at 1:30 pm
In the master database:
REVOKE EXECUTE ON sp_helptext FROM public;
This will drop the only permissions given to execute this stored procedure. That means only a member of the sysadmin fixed server...
July 19, 2010 at 11:24 am
A key is to break the ownership chain between the stored procedures and the table, but to keep it in place between the function and the table. You've got two...
July 19, 2010 at 11:08 am
I'm trying to understand what you've written as it looks like you've got the server name and the windows group mixed up.
If I have a server name of MyServer, then...
July 19, 2010 at 9:34 am
AKP (7/16/2010)
July 16, 2010 at 7:16 am
Viewing 15 posts - 316 through 330 (of 6,105 total)