Forum Replies Created

Viewing 15 posts - 196 through 210 (of 6,104 total)

  • RE: trace?

    Tara-1044200 (5/24/2011)


    I created logon trigger but it not allowing the user to logon which i dont want,I want to allow them to logon and may be email me who logged...

    K. Brian Kelley
    @kbriankelley

  • RE: trace?

    Since they are connecting as a SQL Server login, you can't get any information about the Windows user because it's not passed unless the application does in some way. The...

    K. Brian Kelley
    @kbriankelley

  • RE: CONTROL SERVER vs. impersonate on login::sa

    mlundblad (5/24/2011)


    It looks like the SysAdmin role allows the login to "impersonate" DBO for all databases. I noticed that when I run username() function for a login with the...

    K. Brian Kelley
    @kbriankelley

  • RE: Is there a Logon trigger at the database level?

    No. Logon is a server-level event, which is why the trigger is only at the server level. What are you trying to do? A DDL trigger at the database level...

    K. Brian Kelley
    @kbriankelley

  • RE: certifcate issue

    Yes. But in actuality, you don't have to. However, if you want to remove it, bring up MMC, add the Certificates Snap-In and choose Service Account. If you administrator rights...

    K. Brian Kelley
    @kbriankelley

  • RE: certifcate issue

    Here's what you must do to install the certificate in order to encrypt connections. It must be done for the computer account, not the SQL Server service account. Here's how:

    How...

    K. Brian Kelley
    @kbriankelley

  • RE: Provide read access to current processes

    You will likely have to grant the user VIEW SERVER STATE permissions. If you don't want to do that, you'll have to craft their queries into stored procedures and then...

    K. Brian Kelley
    @kbriankelley

  • RE: SQL 2008 encryption

    You don't want to do this at the database level. It's actually going to be an operating system configuraiton. Basically, you're going to need to install a server certificate that...

    K. Brian Kelley
    @kbriankelley

  • RE: Linking to SQL Server in one domain from a different domain works but...

    When you see the audit failures in the SQL Server log, what do you see in the OS' security event log? Same thing?

    K. Brian Kelley
    @kbriankelley

  • RE: Insert without permissions from within a trigger

    Simple answer: ownership chaining. 🙂

    K. Brian Kelley
    @kbriankelley

  • RE: Backup User Privileges for 3rd party backup

    So those accounts have the correct permissions and you still get the error?

    K. Brian Kelley
    @kbriankelley

  • RE: Backup User Privileges for 3rd party backup

    barry reilly (5/20/2011)


    I also see the BAckupDiskFile: CreateMedia for the x:\symantec\data\BEDB.bak' failed to create. OS Err 5 ( access denied),

    Ensure the SQL Server service account has permissions on x:\symantec\data because...

    K. Brian Kelley
    @kbriankelley

  • RE: Backup User Privileges for 3rd party backup

    No, those are normal. If you do the same thing against a development SQL Server and login using SSMS, you'll see the same thing. Any other errors being reported? You're...

    K. Brian Kelley
    @kbriankelley

  • RE: Backup User Privileges for 3rd party backup

    Third party backup products do require sysadmin membership. You might want to open up profiler, set it up to pickup failed logins, exceptions and user error messages and then run...

    K. Brian Kelley
    @kbriankelley

  • RE: Broken Permission Chain when executing SP dynamiclly

    Add an EXECUTE AS clause to the stored procedure (SQL Server 2005 and up) as part of the CREATE PROCEDURE statement. You probably want to execute as the owner.

    The...

    K. Brian Kelley
    @kbriankelley

Viewing 15 posts - 196 through 210 (of 6,104 total)