Forum Replies Created

Viewing 15 posts - 166 through 180 (of 6,105 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...

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

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

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

  • 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

    -...

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

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

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

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

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

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

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

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

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

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

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