Forum Replies Created

Viewing 15 posts - 2,206 through 2,220 (of 6,104 total)

  • RE: Application Roles - giving permissions

    Whenever possible, avoid granting permission to public. If you grant any logins access to a given database, the public permissions would automatically apply. I believe Andy Warren has an article...

    K. Brian Kelley
    @kbriankelley

  • RE: Application Roles - giving permissions

    Well, keep in mind that the app role must be set by the calling application (through the sp_setapprole stored procedure), if it's not going to do that, there's no point...

    K. Brian Kelley
    @kbriankelley

  • RE: Debugger not working at client

    Is the client machine's SQL Server set to run as a domain user account or is it running as System?

    K. Brian Kelley
    @kbriankelley

  • RE: Login failed for user ''''NT AUTHORITY\ANONYMOUS LOGON''''.

    This sounds like a "double-hop" issue. When a client goes from the workstation to the first

    SQL Server, that's the first hop. When you go from the first SQL Server to...

    K. Brian Kelley
    @kbriankelley

  • RE: Application Roles - giving permissions

    If you're going down that route... follow the Principle of Least Privilege. Only give the rights needed, nothing more.

    Don't use db_datareader and db_datawriter. Instead, assign the appropriate permissions. Keep in...

    K. Brian Kelley
    @kbriankelley

  • RE: SQL Stored Procedure & URL Response

    Potentially you can, but it's probably not a good idea. You'd have to be making call to objects with respect to SQL Server 2000 using the sp_OA* stored procedures or...

    K. Brian Kelley
    @kbriankelley

  • RE: restore NT\Network Service

    Is the CRM application and the SQL Server on the same box? Or when you did the restore, is the database now on a separate server from the CRM application?

    K. Brian Kelley
    @kbriankelley

  • RE: Application Roles - giving permissions

    Tables, yes. You can make the application role a member of the db_datareader and db_datawriter fixed database roles. Stored procedures and functions, no. Everything one of those is created, you'll...

    K. Brian Kelley
    @kbriankelley

  • RE: SQL serverAgent tries to connect other machine

    Is neighbor_server the name of your SQL Server?

    Does the account you set SQL Server Agent to have a login within SQL Server?

    Is is a member of the sysadmin fixed...

    K. Brian Kelley
    @kbriankelley

  • RE: Picking Service Accounts

    I would be hesitant to use names which so clearly identify what the purpose is. I understand it from a manageability perspective, but there is an information disclosure risk...

    In a...

    K. Brian Kelley
    @kbriankelley

  • RE: Access for non sa user to run a DTS package

    They'll also need to own the job or be a member of the TargetServersRole role, though this latter option is not supported by MS. There's code in a view, sysjobs_view,...

    K. Brian Kelley
    @kbriankelley

  • RE: Back Database of SQL 2005 to SQL 2000

    or SQL Server Integration Services (what DTS became in SQL Server 2005). There is an import/export wizard you may find helpful in both cases.

    K. Brian Kelley
    @kbriankelley

  • RE: Get data from Active Directory and store onto SQL server

    This runs from the SQL Server against a domain controller. This assumes the computer's domain because a path to a particular domain or domain controller is not specified. I believe...

    K. Brian Kelley
    @kbriankelley

  • RE: Attempting to Remove builtin\administrators

    Locks don't only keep honest people out. They keep out dishonest people who can't figure out how to bypass the lock. That's a...

    K. Brian Kelley
    @kbriankelley

  • RE: Attempting to Remove builtin\administrators

    Password protected backups in SQL Server 2000 only prevent you from restoring the data. You can open up said backups with a text editor and get the data anyway. Also,...

    K. Brian Kelley
    @kbriankelley

Viewing 15 posts - 2,206 through 2,220 (of 6,104 total)