Forum Replies Created

Viewing 15 posts - 31 through 45 (of 254 total)

  • RE: SP execution progress alerts....

    Throwing in PRINT statements is the way to monitor the progress. Do you have SET NOCOUNT ON on the main proc? If so you need to remove it. Other than...

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

  • RE: Connection in Peer to peer replication between two servers sql server 2005

    I am not sure if there's an "automatic" way to switch your user between the servers. Perhaps you can set some timeout property in your application and use Primary and...

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

  • RE: Ideas for SQLServerCentral.com

    Whatever you do please remove the bold on links feature. Its very annoying. Community Server is releasing(or has it released it already?) a new version CS2. I hear its pretty...

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

  • RE: Dynamic SQL

    I would rather use the SET ROWCOUNT method than the dynamic SQL. Dynamic SQL is a different beast by itself.

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

  • RE: REplication to Oracle database

    Yes.

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

  • RE: trans replication across domains with one-way trust

    the windows (domain) account is local admin as well as sysadmin. So the user has every right to do what it wants.

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

  • RE: Find out what file group objects are stored on

    You could script out the tables along with the indexes from Mgmt Studio.

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

  • RE: trans replication across domains with one-way trust

    You can use different accounts make sure they have appropriate permissions. If the snapshot is being written to a network drive, make sure the account your snapshot agent is using...

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

  • RE: Can replication supply a hot failover?

    I understand. Its better you not get into the mess than get into it and take the blame officially.

    Peer-Peer replication in SQL 2005 sounds promising. but again, you can...

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

  • RE: Can replication supply a hot failover?

    Replication does not provide automatic provide automatic failover. Look into Mirroring. Theres synchronous vs asynchronous modes. Depending on your application/requirements you can go with either. Synchronous provides automatic failover.

    Also...

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

  • RE: Perfmon logs and SQL Profiler trace

    Check out PSSDiag tool from MS. Its a free download. It combines both PerfLogs and SQLDiag into one tool and is pretty straight forward to configure.

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

  • RE: trans replication across domains with one-way trust

    I would recommend creating one account perhaps something like RplServiceAccount, making the user lodal admin on both the SQL boxes and also make the user sysadmin instad of dbowner. This...

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

  • RE: User Acess to SQL Profiler

    Yes the user has to belong to sysadmin role to run profiler.

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

  • RE: BCP problems - help?

    See if putting quotes around delimiters helps:

    SET @CMD = @CMD + '-t"~" -r"/n" -f "C:\test\ACCOUNT.FMT" -S"IS763\SQLEXPRESS" -T -b50000'

    Also, see if removing quotes for DB name helps.

    SET @CMD = 'BCP...

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

  • RE: (nolock) or with (nolock) that''''s the question!

    AFAIK, you dont need to use WITH for NOLOCK. If you have index hints then you have to use the WITH keyword. but for Locking hints you dont need to...

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

Viewing 15 posts - 31 through 45 (of 254 total)