Forum Replies Created

Viewing 15 posts - 256 through 270 (of 1,069 total)

  • RE: Unable to connect to SQL Server 2008 r2 named instance

    RedLegSQL (4/23/2012)


    .. its reporting it's unable to connect, however the service is running...

    1) Please post the error message.

    2) Make sure that SQL Server Browser service running.

  • RE: BCP In Issue

    sqlnaive (4/19/2012)


    ... error "String data, right truncation" where we have following data value in the column:

    ; nested exception is: java.net.ConnectException: Connection timed out

    I guess the width of the...

  • RE: CHECKDB returned this...

    Thanks for your updates. Happy to know that you are able to fix the issues.

  • RE: how can i have an online sync standby database in sql server

    mhd_mhd (4/19/2012)


    Tanx

    Our data is so important and i dont want to loose any data

    also i need online reporting

    the primary database and standby are in one instance

    Keeping the primary...

  • RE: how can i have an online sync standby database in sql server

    mhd_mhd (4/18/2012)


    i have a standby database in sql server(2008). backup from primary database and copy logs and restoring Occur every day every 10 seconds ,but i have latency in standby...

  • RE: how can i have an online sync standby database in sql server

    mhd_mhd (4/18/2012)


    i have a standby database in sql server(2008). backup from primary database and copy logs and restoring Occur every day every 10 seconds ,but i have latency in standby...

  • RE: CHECKDB returned this...

    1) Run the following (with your database and publication name):

    USE <Database>

    GO

    EXEC sp_changepublication

    @publication = 'MainPub',

    @property = N'allow_anonymous',

    @value = 'false'

    GO

    EXEC sp_changepublication

    @publication = 'MainPub',

    @property = N'immediate_sync',

    @value = 'false'

    GO

    2) Add new article to the...

  • RE: CHECKDB returned this...

    Check the publisher and make sure that table is fine there.

    You can remove the article 'SummaryHeader' from replication and re-add it without generating snapshot for other articles in the publication.

    Another...

  • RE: Update statistics is not showing for a table.

    Minto Minto(quendans) (4/13/2012)


    In our server (SQL 2008 Standard) we are facing a problm with one table.

    Issue:It is having 740 rows.These row we have updated last month.This month agian we have...

  • RE: SQL Data Migration From 2005 to 2012 By:Shubham Saxena

    shubham.saxena67 (4/13/2012)


    How can it possible.restore backup set send error.

    Please post the complete error message you got.

  • RE: SQL 2005 Database Mirroring Error

    farrukh635 (4/12/2012)


    1. Is it neccessary the service account user of SQL Server Agent and and SQL Server user must be same on both server?

    2. If i change service account and...

  • RE: about sp_helpdb

    It is a valid question.

    Run this:

    sp_helptext sp_helpdb

  • RE: Need to tune sql

    Please post/attach the query execution plan.

  • RE: ISNULL function

    declare @test datetime = getdate()

    SELECT @test = ISNULL(TT.EffectiveDate, GETDATE())

    FROM testtable1 AS TT

    WHERE TT.VersionID = 2167

    select @test

  • RE: Changing Job step properties

    Thanks for posting the solution.

    I think updating system tables should be avoided.

    Can sp_update_jobstep be used for this?

Viewing 15 posts - 256 through 270 (of 1,069 total)