Forum Replies Created

Viewing 2 posts - 1,246 through 1,248 (of 1,248 total)

  • RE: Error during Login Process (to SQL Server 2005)

    Sometimes, especially in a VM env, the firewall can cause these problems. In the firewall on the server allow it to open port 1433, what SQL SErver uses to listen...

    ----------------------------------------------------

  • RE: Update SQL tables

    Here is the basic Syntax:

    update table1

    SET serverowner = (

    select serverOwner

    from table2

    where table1.servername = table2.servername

    )

    where servername in (select servername from table2)

    GO

    Sorry for the late reply, I overlooked some older emails...

    ----------------------------------------------------

Viewing 2 posts - 1,246 through 1,248 (of 1,248 total)