Forum Replies Created

Viewing 15 posts - 1,486 through 1,500 (of 6,104 total)

  • RE: Some passwords don't work after migration from SQL2000

    Packet tracing won't be found in Books Online. if you have a network engineer or a server admin who has done network traces before, have them look at the traffic...

    K. Brian Kelley
    @kbriankelley

  • RE: Error 26: Error locating server message when attempting to connect to named instance

    You can get the same result by trying to create an ODBC data source on the server referencing the instance. All you're trying to do is validate connectivity. However, if...

    K. Brian Kelley
    @kbriankelley

  • RE: Changing passwords across many instances

    Within SQL Server this isn't very doable except by the means you describe (and SQLCMD is a good choice instead of isql/oswl if you're using SQL Server 2005 tools). Linked...

    K. Brian Kelley
    @kbriankelley

  • RE: Can't change Server Authentication Mode

    In case it's not the Vista issue, SQL Server 2005 has a recovery mechanism for this type of scenario where you can't get in as an administrative user for SQL...

    K. Brian Kelley
    @kbriankelley

  • RE: SQL Server 2000 on Windows Server 2000 or 2003

    There's also the level of support for both products. Windows 2000 is in Extended Support, meaning Microsoft is only bringing out patches and hotfixes for security reasons. A few links...

    K. Brian Kelley
    @kbriankelley

  • RE: Setting permissions for all objects of a particular kind in a database

    Unless you have a lot of schema, it shouldn't be that many commands. For instance, if all objects are in the dbo schema, you just have to apply the permission...

    K. Brian Kelley
    @kbriankelley

  • RE: Restoration

    Aye, tail log backups allow you to attempt to backup the existing transaction log so that you can get to a point in time restore. If you're not familiar with...

    K. Brian Kelley
    @kbriankelley

  • RE: SQL 2005: Connecting to Database Engines not on same Network

    Two SQL Servers can use Windows authentication, even if they aren't in the same domain, as long as there is a trust relationship between the two domains. This does assume...

    K. Brian Kelley
    @kbriankelley

  • RE: SQL JOIN syntax

    *= means LEFT OUTER JOIN

    in general you can replace *= like so:

    SELECT *

    FROM Orders, Customers

    ON Orders.CustomerID *= Customers.CustomerID

    becomes:

    SELECT *

    FROM Orders

    LEFT JOIN Customers

    ON Orders.CustomerID =...

    K. Brian Kelley
    @kbriankelley

  • RE: Sql server Agent

    Once you start a job, it will continue to execute until it either completes or hits an error. Even if you disable it, it will continue to execute the steps.

    Therefore,...

    K. Brian Kelley
    @kbriankelley

  • RE: Table/SP Permission Management

    In SQL Server 2000 there is a concept called ownership chaining. If the stored procedure and the object it refers to (such as a table or view) are both owned...

    K. Brian Kelley
    @kbriankelley

  • RE: Database owner

    For SQL Server 2005, this is the new syntax (though sp_changedbowner still works just fine):

    ALTER AUTHORIZATION ON DATABASE::*Database Name* TO *Login*

    With that said, one of the cases where this matters...

    K. Brian Kelley
    @kbriankelley

  • RE: Where do I look for all of hte UDF's that exsist?

    Run this in all the databases:

    SELECT *

    FROM sys.objects

    WHERE RIGHT(type_desc, 8) = 'FUNCTION'

    K. Brian Kelley
    @kbriankelley

  • RE: Filter on INNER JOIN

    For clarity, I would put the condition in the WHERE clause. As far as execution, you can run both queries and get the execution plan for both. That should clear...

    K. Brian Kelley
    @kbriankelley

  • RE: Error 26: Error locating server message when attempting to connect to named instance

    Can you connect to the instance on the server itself? Have you tried connecting to the instance from a different system other than your own?

    K. Brian Kelley
    @kbriankelley

Viewing 15 posts - 1,486 through 1,500 (of 6,104 total)