Forum Replies Created

Viewing 15 posts - 316 through 330 (of 6,104 total)

  • RE: Adding login group

    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....

    K. Brian Kelley
    @kbriankelley

  • RE: How to restrict user's access to some DBs?

    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...

    K. Brian Kelley
    @kbriankelley

  • RE: unable to access the sql server people are in the user group.

    SA-1 (7/20/2010)


    did you ever get this to work? I'm having similar problems, where some users aren't able to login to SQL Server while others part of the same group are...

    K. Brian Kelley
    @kbriankelley

  • RE: Application role

    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...

    K. Brian Kelley
    @kbriankelley

  • RE: Sudden denial of permissions

    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...

    K. Brian Kelley
    @kbriankelley

  • RE: ddl_admin ?

    Here's an example how using a DDL trigger:

    Granting limited permissions to create views in another schema in SQL Server - Part 2

    K. Brian Kelley
    @kbriankelley

  • RE: Searching for sa and XP_Cmdshell

    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...

    K. Brian Kelley
    @kbriankelley

  • RE: Searching for sa and XP_Cmdshell

    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...

    K. Brian Kelley
    @kbriankelley

  • RE: Searching for sa and XP_Cmdshell

    RajaStyle123 (7/19/2010)


    Is there a way to scan your network for sa passwords which are blank or default sa and / or XP_Cmdshell turned on ? I just want to...

    K. Brian Kelley
    @kbriankelley

  • RE: Adding login group

    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...

    K. Brian Kelley
    @kbriankelley

  • RE: Find Login Disabled Time in SQL Server

    Use LOGINPROPERTY('LockoutTime') instead.

    K. Brian Kelley
    @kbriankelley

  • RE: Lock Down sp_helptext

    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...

    K. Brian Kelley
    @kbriankelley

  • RE: Preventing inherited permissions through stored proc

    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...

    K. Brian Kelley
    @kbriankelley

  • RE: Adding login group

    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...

    K. Brian Kelley
    @kbriankelley

  • RE: SQL SERVER Service Startup accounts

    AKP (7/16/2010)


    Thanks for your reply. But Here I want to know what are the security requirements for those abc/xyz domain user accounts if i want to run agent & Integration...

    K. Brian Kelley
    @kbriankelley

Viewing 15 posts - 316 through 330 (of 6,104 total)