Forum Replies Created

Viewing 15 posts - 136 through 150 (of 582 total)

  • RE: Bad Query Plan

    Roger Sabin (8/7/2014)


    I tried what you suggest and it does force the "bad" plan when I use 40 and a "good" plan when I use 17. Thanks.

    So now you verified...

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: how to uninstall sql server

    I dont think it would be a problem but not sure. It might be safe to just uninstall VS as well just to be safe as long as you dont...

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: Bad Query Plan

    once the plan is created, that plan will always be used until it is bumped out of cache or invalidated (recompiling proc invalidates plan). recompile your proc then run it...

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: Bad Query Plan

    This is most likely a parameter sniffing issue. The "bad plan" has a compiled value of 40 for marketID and the "good plan" has a compiled value of 17. I...

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: how to uninstall sql server

    Once you do have that uninstalled you might be better off getting the SSDT installer here(http://msdn.microsoft.com/en-ca/data/tools.aspx). It is the most up to date one. you would probably want the SSDT-BI...

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: how to uninstall sql server

    I would suggest just uninstall sql server data tools via programs and features. then once uninstalled. try to install it again with the sql server installer selecting only sql server...

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: how to uninstall sql server

    SpeedSkaterFan (8/6/2014)


    If I start data tools (or start visual studio 2010, which is I believe the same), start a new project, choosing integration services / integration services project and then...

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: how to uninstall sql server

    Integration services does not come with express so you would only have one SSIS. even so SSIS is a shared feature so even if you installed multiple enterprise instances only...

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: when did msdb.dbo.sp_set_sqlagent_properties change to use @databaseemail_profile ?

    It was added in SQL Server 2012

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: Linked Server Login Error NT AUTHORITY\ANONYMOUS LOGIN, Kerberos

    Check for a duplicate SPN for that server registered to a different account.

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: Automatically syncing database to different server

    roadkillchicken (7/25/2014)


    Hi

    Does replication require clustering? It can be delayed if needed so real time isn't a massive issue..

    Thanks

    If you can have server B delayed then log shipping with a stand-by...

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: Automatically syncing database to different server

    Always On AGs or replication. You could also do log shipping but this be delayed.

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: Changing collation

    These two collations are effectively the same. They are both Case-insensitive, accent-sensitive, and have the same codepage, 1252.

    select collationproperty('SQL_Latin1_General_CP1_CI_AS','CodePage')

    select COLLATIONPROPERTY('Latin1_General_CI_AS','CodePage')

    One is windows collation and one is SQL collation but I...

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: RESTORE DATABASE - BUFFERCOUNT

    Specifies the total number of I/O buffers to be used for the restore operation. You can specify any positive integer; however, large numbers of buffers might cause "out of memory"...

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: SQL Server 2012 SP2 and read-only databases

    My guess is that when you installed the service pack on the secondary, the databases involved in AG were not updated as the message said. If they were then the...

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

Viewing 15 posts - 136 through 150 (of 582 total)