Forum Replies Created

Viewing 15 posts - 46 through 60 (of 116 total)

  • RE: Merge replication between different domains

    You can try one thing first register the publisher in enterprise manager on subscriber then use that name for configuring your subscription

    Note: - all this steps & replication configuration should...

    ------------
    Prakash Sawant

    http://psawant.blogspot.com

  • RE: Server Unavailable

    What i think is its something to do with the memory management on the server.

    You can monitor the server for memory utilization by ASP & how the pooling is handled...

    ------------
    Prakash Sawant

    http://psawant.blogspot.com

  • RE: Subscription Expired... Can I un-expire it ?

    Subscriptions are set to expire because in case you configure a replication for temporary purpose after which you forgot the remove the subscription then in this case the publisher will expire...

    ------------
    Prakash Sawant

    http://psawant.blogspot.com

  • RE: Merge replication between different domains

    Yes, it is possible to replicate between different domains.

    The easiest way to set up replication between different domains is to create a local user account on both the servers with...

    ------------
    Prakash Sawant

    http://psawant.blogspot.com

  • RE: Server Unavailable

    You can even check for the application user access to the DB OR Stored Procedure.

     

    ------------
    Prakash Sawant

    http://psawant.blogspot.com

  • RE: very ineffienct update query

    I think 2 things can be done here.

    1. access remote db from link server.

    2. First dump all the records in #temp table from select & then update the main table...

    ------------
    Prakash Sawant

    http://psawant.blogspot.com

  • RE: sp_who2 cputime

    Try this...

    sp_helptext sp_who2

    ------------
    Prakash Sawant

    http://psawant.blogspot.com

  • RE: After alter proc stored procedure does not return anything

    Check OSQL user for valid permission on prod.

     

    ------------
    Prakash Sawant

    http://psawant.blogspot.com

  • RE: Sql server not starting

    Check the account by which your service was running OR try starting it from different account.

     

    ------------
    Prakash Sawant

    http://psawant.blogspot.com

  • RE: Single Quote and Double Quote

    I am not very sure why OS will change the way query is writen in SQL server.

    I think you just need to set the "SET QUOTED_IDENTIFIER ON"

    for more info...

    ------------
    Prakash Sawant

    http://psawant.blogspot.com

  • RE: Temp Tables Vs Nested Inner Query - Comparison

    It really depend's on your query & the table which you are accessing. if you are selecting data from a huge table then tmp table is the good opction as that will cut...

    ------------
    Prakash Sawant

    http://psawant.blogspot.com

  • RE: Data types and sizing for commonly used fields.

    varchar[(n)]

    Variable-length non-Unicode character data with length of n bytes. n must be a value from 1 through 8,000. Storage size is the actual length in bytes of the data...

    ------------
    Prakash Sawant

    http://psawant.blogspot.com

  • RE: SQL Server 2000 Corrupt database/file

    This link might help you.

    http://support.microsoft.com/default.aspx?scid=kb;en-us;246133

    ------------
    Prakash Sawant

    http://psawant.blogspot.com

  • RE: list of user sp''''s from master db

    Sushila,

    Thanks for the link, it was nice to read that.

     

    ------------
    Prakash Sawant

    http://psawant.blogspot.com

  • RE: Incorrect syntax near ''''ge''''. [SQLSTATE 42000]

    IF it's a text column having data less then 4000 char then use this

    REPLACE(CAST(<column_name> AS Nvarchar(4000)),char(13),char(10)) AS column_name

    Or if its a varchar column then try this.

    REPLACE(<column_name>,char(13),char(10)) AS column_name

    ------------
    Prakash Sawant

    http://psawant.blogspot.com

Viewing 15 posts - 46 through 60 (of 116 total)