Forum Replies Created

Viewing 8 posts - 1 through 8 (of 8 total)

  • RE: Incrementing a column during an UPDATE

    Just updating the thread to show my solution

    Not the most elegant solution, but it works....

    -- For the sake of testing I have used table variables

    DECLARE @Table1 TABLE ( ID INT...

  • RE: Incrementing a column during an UPDATE

    Thanks for the reply's.

    Wayne's solution looks closest to what i am after, but i think it'll need a little tweaking. I'll keep you all updated with how I get...

  • RE: Unable to connect remote SQL Server instance

    A few of things you can try;

    - Try changing the default tcp port from 1433

    - Disable windows firewall     Control panel => Administrative tools => Services    and stop windows firewall.  Or if...

  • RE: SQL Password Prerequisites

    The script I am using is as follows;

    if not exists (select * from dbo.sysusers where name = N'User' and uid < 16382)

    EXEC sp_grantdbaccess N'User', N'User'

    GO

  • RE: Remote Connection problem / question

    Seems like the problem is with the server being on a different 'Domain'

    I will post more info when I finish troubleshooting it

  • RE: Remote Connection problem / question

    Im using an 'alias' with a hard coded IP and port so I have the browser service disabled.

    Although saying that,  I started off by using the Browser service, but didn't...

  • RE: Remote Connection problem / question

    Just to clarify where I am and what I have tried

    Basically on the remote computer I log in with "sa" and it says it connects, but it doesn't look/behave like...

  • RE: Remote Connection problem / question

     Surface Area Configuration is setup correctly (on the server):

    Database Engine/Remote Connections => Local and Remote Connections - using both TCP/IP and named pipes.

Viewing 8 posts - 1 through 8 (of 8 total)