Forum Replies Created

Viewing 15 posts - 226 through 240 (of 6,104 total)

  • RE: Limit access to programs

    Keep in mind that a logon trigger that blocks a certain application (like Excel) will do that for all connections of that application. So if you have other databases that...

    K. Brian Kelley
    @kbriankelley

  • RE: The server principal 'MyDomain\DomainUserA' already exists.

    Yes, as Mohammed has posted, check to see if there is an account already added with that SID. In the case where the user or group name is changed in...

    K. Brian Kelley
    @kbriankelley

  • RE: Explicit GRANT permission against fixed db roles

    Lowell (5/10/2011)


    it's actually a very common security setup to have a group with ONLY execute permissions; some applications are designed so that all data is accessed via stored procs, so...

    K. Brian Kelley
    @kbriankelley

  • RE: SQL Server using Active Directory in multiple countries

    Citrix is built on top of the Terminal Services technology but provides a greatly enhanced experience, especially as far as manageability is concerned. You can learn more at http://www.citrix.com. It's...

    K. Brian Kelley
    @kbriankelley

  • RE: REATE/ALTER/DROP permissions on all current and new SPs & Functions of db?

    You'll need to do the following:

    - Create a user defined role to assign permissions to.

    - Grant CREATE PROCEDURE to that role.

    - Grant CREATE FUNCTION to that role.

    - Grant ALTER on...

    K. Brian Kelley
    @kbriankelley

  • RE: Error in the Application LOG

    Usually you see this sort of error when the user in question is a member of too many Windows groups. Based on the name, this looks like a service account,...

    K. Brian Kelley
    @kbriankelley

  • RE: Login Failed For User < >

    Depends on the type of group as well as the trust relationship between B and C. For instance, for a group in Domain B to able to take users from...

    K. Brian Kelley
    @kbriankelley

  • RE: View server roles

    This sort of works. There are two ways to have the equivalent of sysadmin rights as of SQL Server 2005. The first is to be a member of the sysadmin...

    K. Brian Kelley
    @kbriankelley

  • RE: Login Failed For User < >

    Without knowing your AD domain and trust setup, it's nearly impossible to troubleshoot this. That's not something you want out in the public domain, so at this point, I'm going...

    K. Brian Kelley
    @kbriankelley

  • RE: SQL Server using Active Directory in multiple countries

    There are a few issues with this scenario.

    1. SQL Server will be exposed to the Internet. While this is doable, it's not fun. Definitely can't run with default ports or...

    K. Brian Kelley
    @kbriankelley

  • RE: Generate login account scripts for a specific database

    Lowell (5/6/2011)


    i think if you connect to a specific database and run this it might do what you are after:

    select 'EXEC sp_help_revlogin ' + name

    from sys.database_principals

    where type_desc IN ('SQL_USER','WINDOWS_USER')...

    K. Brian Kelley
    @kbriankelley

  • RE: Legal Laws on Collecting Social Security Number

    I agree with Michael: best to check with legal professionals. And yes, it does vary from state-to-state. For instance, California's data breach laws aren't pretty.

    K. Brian Kelley
    @kbriankelley

  • RE: Possible new attack against SQL Server coming

    ebeyalb123 (4/26/2011)


    One more insight: In our case the attacker used the tomcat manager interface (that unfortunately was publicly open with the default password) to install a servlet that started the...

    K. Brian Kelley
    @kbriankelley

  • RE: Possible new attack against SQL Server coming

    Richard Warr (4/26/2011)


    Although the OP is over seven years old it's clear that there are still lessons to be learned here for many of us. Is it really a requirement...

    K. Brian Kelley
    @kbriankelley

  • RE: Tie multiple users to a single login

    Do you have the option of using Windows groups and Windows authentication? If so, this is trivial. Put both sets of users in a Windows group. Make that Windows group...

    K. Brian Kelley
    @kbriankelley

Viewing 15 posts - 226 through 240 (of 6,104 total)