Forum Replies Created

Viewing 15 posts - 166 through 180 (of 6,104 total)

  • RE: setspn not creating an SPN

    If it's a cluster and you're connecting from a cluster node, only expect NTLM.

    Otherwise, make sure that your clients are connecting to SQL Server based on the name you specified...

    K. Brian Kelley
    @kbriankelley

  • RE: setspn not creating an SPN

    Ah, also, you're querying the wrong info. You want to do a -L against the service account. The SPN will belong under the service account.

    K. Brian Kelley
    @kbriankelley

  • RE: setspn not creating an SPN

    It does potentially take time. It gets written to one DC and then must be replicated. If the DC you wrote to and the DC you query aren't the same,...

    K. Brian Kelley
    @kbriankelley

  • RE: Securing SQL Using KB932881; Questions

    I would keep the service account(s) and the DBAs separate. SQL Server, if you use SQL Server Configuration Manager to manage the service accounts (the only supported way, BTW), will...

    K. Brian Kelley
    @kbriankelley

  • RE: Permissions on tables

    I would cease and desist with sp_helprotect if you're managing anything beyond SQL Server 2000.

    You're wanting to look at the following catalog views and tie them together appropriately:

    - sys.database_permissions

    - sys.database_principals

    -...

    K. Brian Kelley
    @kbriankelley

  • RE: Securing SQL Using KB932881; Questions

    mstjean (11/10/2011)


    FIRST QUESTION: is this the "last word" on minimizing Domain Admin permissions? If not, should I be looking at something else?

    My environment: We're running SQL2005 EE, several of which...

    K. Brian Kelley
    @kbriankelley

  • RE: Grant execute permission on all user defined stored procedures having a database

    If you want to cover them all and you have SQL Server 2005 and higher as your SQL Server version, then GRANT EXECUTE against the appropriate schema (usually dbo). For...

    K. Brian Kelley
    @kbriankelley

  • RE: Audit a login's activity (select, insert,update,delete) against any database

    Your best bet is going to be a server side trace. You can use Profiler to build the trace. It's the only way to capture what all is being done....

    K. Brian Kelley
    @kbriankelley

  • RE: security

    Sean, that query is 2005 and above. 🙂

    For 2000:

    SELECT [name]

    FROM syslogins

    WHERE denylogin = 1

    OR hasaccess = 0;

    As for your second question, SQL Server doesn't track last...

    K. Brian Kelley
    @kbriankelley

  • RE: Encrypting Advice

    Yes, but it requires one of the following:

    - All users have the ability to CREATE SYMMETRIC KEY in the database.

    - You create a stored procedure with an EXECUTE AS clause...

    K. Brian Kelley
    @kbriankelley

  • RE: Managing groups

    A lot of reasons could cause this. Are you seeing anything in the security event log at the OS level? Do you know what kind of group it is (domain...

    K. Brian Kelley
    @kbriankelley

  • RE: How do I remove or change the schema owner for db_owner?

    It probably means the database was created as that windows user. Check the owner of the database.

    K. Brian Kelley
    @kbriankelley

  • RE: Security - Hit or Miss

    I'm talking about ALTER on the db_datareader and db_datawriter schemas. There shouldn't be anything in them. Therefore, that set of permissions is unnecessary. I understand the general ALTER. However, realize...

    K. Brian Kelley
    @kbriankelley

  • RE: Security - Hit or Miss

    1. Granting the ALTER to the schemas in question doesn't do anything. You really shouldn't change that.

    2. Nothing in these permissions grants CREATE. Likely there are other permissions at play....

    K. Brian Kelley
    @kbriankelley

  • RE: how to assign permission to start sql server active directory helper or Permission to start SQL Writer permissions

    These are services. As a result, any account with the permission to stop and start services can stop and start these. That requires either Power User or Administrator group membership...

    K. Brian Kelley
    @kbriankelley

Viewing 15 posts - 166 through 180 (of 6,104 total)