Forum Replies Created

Viewing 15 posts - 61 through 75 (of 497 total)

  • RE: Need help to understand these wait-types

    I would start with this blog [/url]post by Paul Randal.



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Write into a table a user-entered value and increment that number n times as existing rows

    Please read the article in my signature about posting these types of questions. After you have supplied the table definitions and sample data please provide the code that you currently...



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: 2 copies of mirroring database

    Nope. Mirroring is a single Principal and a single Mirror. Other options would be replication, log shipping, SAN tools (replication, etc).



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: SQL Service startup/shutdown - Windows or Configuration Manager?

    This is from BOL:

    Important note Important

    Always use SQL Server tools such as SQL Server Configuration Manager to change the account used by the SQL Server or SQL Server Agent services,...



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: SQL Server installation

    I would start with this guide[/url] from Brent Ozar and it should have most everything you need.



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: can you call a linked server within a function

    Try adding "WITH" prior to (NOLOCK) i.e. WITH (NOLOCK)



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: keeping size of DB down

    terry999 (6/24/2014)


    Is it ok to periodically shrink the ArchiveDB? will it get fragmented and cause later problems

    You could periodically shrink the database, but I would run a reindex operation after...



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Receiving Correct Output

    You compare Funded_date to the following:

    - Greater than or equal to - DATEADD(MONTH, DATEDIFF(MONTH, 0, GETDATE())-5, 0) = 2014-01-01

    - Less than - DATEADD(MONTH, DATEDIFF(MONTH, -1, GETDATE())-1, 0) = 2014-06-01

    -...



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: ssms error

    Have you tired to reinstall SSMS? If not, you might want to try that.

    The other question I have is why are you using "Edit Top 200 Rows"? Why not use...



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: TempDB Data Files - I/O Requests Taking Longer Than 15 Seconds To Complete

    Adding more TempDB files will help with SGAM and PFS page contention. I would start with this post[/url] to make sure that you are not seeing contention during the operation....



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Connection String With Data Source = localhost

    dndaughtery (5/8/2014)


    I would think that the best practice would be to create an enviroment variable on each machine (Dev, QA, UAT, and Prod) and set all connection Mgrs to use...



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: How am I getting Network_IO wait

    ASYNC_NETWORK_IO usually doesn't mean that you are waiting on the network. It usually means that the application is processing the data one row at a time or simply doesn't acknowledge...



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Database mail issue

    Take a look at this thread and see if it helps: http://www.sqlservercentral.com/Forums/Topic604406-146-1.aspx



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: ssrs 2008 r2 execute with temp table

    1. Can you update the spoom sproc to accept a Customer parameter and just pass it into the stored proc and have it do the filtering?

    2. If not, you could...



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Sample Databases like Adventure works

    For BI related stuff there is the Contoso sample database: http://www.microsoft.com/en-us/download/details.aspx?id=18279



    Microsoft Certified Master - SQL Server 2008
    Follow me on twitter: @keith_tate

    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

Viewing 15 posts - 61 through 75 (of 497 total)