Forum Replies Created

Viewing 15 posts - 2,236 through 2,250 (of 6,104 total)

  • RE: Move SQL views to another server

    As Ian indicates, a view defintion is stored in the user database. The master database stores information on the databases themselves and the logins to SQL Server (whether SQL Server...

    K. Brian Kelley
    @kbriankelley

  • RE: Getting an error while removing a user

    The solution Greg gives works to identify the objects. It queries every database to see what objects the login actually owns.

    The sp_change_users_login is used to reassociate disconnected user accounts with...

    K. Brian Kelley
    @kbriankelley

  • RE: Max. number allowed on MS SQL 2000

    Per processor licensing means an unlimited # of users. Per seat is where you have to count heads.

    K. Brian Kelley
    @kbriankelley

  • RE: Permissions to run a job

    Error string: Login failed for user '(null)'. Reason: Not associated with a trusted SQL Server connection."

    This would indicate you're connecting with an account that is either untrusted (from a...

    K. Brian Kelley
    @kbriankelley

  • RE: SQL Litespeed backup

    LiteSpeed has a command line utility which can expand a Lightspeed backup into a "normal" SQL Server backup. If you use it, is it able to read the backup file...

    K. Brian Kelley
    @kbriankelley

  • RE: SQL Login

    You could do the local account, thing, yes. However, a more feasible solution might be to install an SSL certificate and force encryption on the connection. Is that an option?...

    K. Brian Kelley
    @kbriankelley

  • RE: Permissions to run a job

    Looks like everything is okay on the permissions side. The job steps that are failing... are they making calls to the same SQL Server where the package is running (as...

    K. Brian Kelley
    @kbriankelley

  • RE: Permissions to run a job

    Who is the job owner? If not sa, is that job owner in the sysadmin fixed server role?

    K. Brian Kelley
    @kbriankelley

  • RE: SQL Login

    By default, yes, but the method of "encryption" is very, very weak. Check the following:

    SQL Server Security: Login Weaknesses

    K. Brian Kelley
    @kbriankelley

  • RE: select

    If you mean how do you return all rows where address2 is null, you can do something like:

    SELECT address1
    FROM yourTable
    WHERE address2 IS NULL

    If you mean how can you get address1,...

    K. Brian Kelley
    @kbriankelley

  • RE: Permissions on view overridden by table permissions?

    When you log in as TestUser and go to the database, if you execute the following query, what user is returned?

    SELECT USER_NAME()

    K. Brian Kelley
    @kbriankelley

  • RE: Windows Account Information from a SQL Login

    Not if the login to SQL Server is done using a SQL Server login. That's the issue at hand. When a SQL Server login is used, no Windows account information...

    K. Brian Kelley
    @kbriankelley

  • RE: Permissions on view overridden by table permissions?

    Is TestUser a member of any other group? If you look at the OS level, is TUsers a member of the local administrators group?

    K. Brian Kelley
    @kbriankelley

  • RE: SysAdmins Locked Out of SQL Server

    You know, when all is said and done, you should write this up as an article and submit it to Steve.... names omitted or changed to protect the innocent, of...

    K. Brian Kelley
    @kbriankelley

  • RE: Question re granting access to xp_cmdshell

    Follow the principle of least privilege. Give the proxy account only what rights are absolutely necessary. If it needs access to a particular directory, grant it access to that directory,...

    K. Brian Kelley
    @kbriankelley

Viewing 15 posts - 2,236 through 2,250 (of 6,104 total)