Forum Replies Created

Viewing 15 posts - 3,406 through 3,420 (of 6,104 total)

  • RE: Multiple Connection Strings to same Data Source

    You're going to have to look in the code to determine sServerName. This is in the application, not SQL Server.

    Serious question here... is there a reason the SQL Server...

    K. Brian Kelley
    @kbriankelley

  • RE: Multiple Connection Strings to same Data Source

    Are the credentials the same in all cases?

    Reading what you've written, are both the web server and the SQL Server dual homed? Sounds like it when you say both have...

    K. Brian Kelley
    @kbriankelley

  • RE: Microsoft SQL Server login - Connection failed

    When you say the administrative ID, is that a Windows account? Does it match either the cluster service account or the SQL Server service account? You didn't mention where the...

    K. Brian Kelley
    @kbriankelley

  • RE: Remote SQL Server access from SP

    Yes. You can do so through the use of linked server or the use of certain remote query recordset commands (OPENQUERY, OPENROWSET).

    K. Brian Kelley
    @kbriankelley

  • RE: SQL Best Practice: Use Windows groups instead of indiv windows logins question

    Approach it from a role-based security perspective. Build the Windows groups around business roles (system administrator, legal secretary, sales rep, etc.). This will allow those groups to be reused in...

    K. Brian Kelley
    @kbriankelley

  • RE: syslogins / sysxlogins retreive password

    The password field is actually two hashes, one of which is the password in all uppercase. That's how SQLCrack and NGSSquirrel are able to brute force the password faster. They...

    K. Brian Kelley
    @kbriankelley

  • RE: CURRENT_USER function incorrectly returning dbo

    I just tested and even if you are explicitly mapped, if you have sysadmin access in anyway, you still map in as dbo. Check to see if you have sysadmin...

    K. Brian Kelley
    @kbriankelley

  • RE: CURRENT_USER function incorrectly returning dbo

    Is your login a member of the sysadmin fixed server role? If so, unless explicitly set otherwise, you automatically map into the database as dbo.

    K. Brian Kelley
    @kbriankelley

  • RE: List of tables without permissions to public

    There are quite a few examples in the scripts about how to run against multiple databases. Here's what you need to find the tables the public group has no permissions...

    K. Brian Kelley
    @kbriankelley

  • RE: How to make maintenance plan in SQL server

    Microsoft acknowledges the auto-repair option requiring single user mode in SQL Server 2000 as a bug. It affects all versions.

    BUG: Database Maintenance Plan on System Databases...

    K. Brian Kelley
    @kbriankelley

  • RE: Client Network Utility

    If you don't need the alias, you shouldn't use it. Only reason is if another problem shows up, whoever is doing the troubleshooting might forget or not know the alias...

    K. Brian Kelley
    @kbriankelley

  • RE: Client Network Utility

    SQL Server requires exclusive use of whatever port it's listening on. Therefore, if you have multiple instances on a server, each will require its own port. By default, SQL Server...

    K. Brian Kelley
    @kbriankelley

  • RE: The service did not start due to a logon failure

    Check with your admins for the user rights settings. Make sure they don't have specified values for Log on as a service. If they've set something in any of the...

    K. Brian Kelley
    @kbriankelley

  • RE: Case Insensitive

    You don't have to do a full reinstall. You can run rebuildm. This will allow you to select a new collation. However, it does replace master, msdb, and model. You'll...

    K. Brian Kelley
    @kbriankelley

  • RE: SQL query listener?

    Sounds like you need a network sniffer. There are a whole host of them. the Sniffer (tm) product I know recognizes some of the TDS packets correctly, or at least...

    K. Brian Kelley
    @kbriankelley

Viewing 15 posts - 3,406 through 3,420 (of 6,104 total)