Forum Replies Created

Viewing 15 posts - 256 through 270 (of 497 total)

  • RE: What is the default sa password?

    When you change modes the sa password is still disabled. Here read this article:http://technet.microsoft.com/en-us/library/ms188670.aspx

    If Windows Authentication mode is selected during installation, the sa login is disabled and a password is...



    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: A little T-SQL syntax help please

    igloo21 (1/10/2014)


    Hello-

    I’m having a minor issue and I’m having trouble figuring out why. So basically all I want to do is update one column using the UPDATE and SELECT below....



    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: A little T-SQL syntax help please

    Can you join Productss (is it really spelled with two S's :hehe:) to the select statement i.e.: UPDATE pdt

    SET pdt.HotLeadParticipant=0

    FROM

    dbo.ValidProducts...



    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: Using RANK with Count in a set of results

    Please also provide the table DDL and some sample data along with the expected outcome. Please review the article in my signature and post the necessary items. Thanks



    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: Get rid of ' in my result

    As Lynn said there isn't enough information I got rid of the splits variable and guessed at the others and it works fine for me:Declare @backupcommand varchar(2000)

    ,@subdir varchar(200) = 'c:\'

    ,@databasename...



    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: Reducing deadlocks with update query hint or other method...

    Dennis Post (1/10/2014)


    Because of the time it takes to review the rows another process may come in and start grabbing those same rows while you are in the middle of...



    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: Use Partitioning as a data purge solution?

    Partitioning would work great for your case, the only issue I see is the administration of having to prepare all of those partitions for every day. What your developer is...



    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: Best way to update a column with the value from another column in the same record?

    Keith Tate (1/9/2014)


    The select statement that Chris gives is for you to see the data before updating once you are comfortable with the query you can remove the select statement...



    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: Considerations for Migrating from SQL 2005 to SQL 2012

    Again have you tired searching on the topic? There are a lot of good resources and a lot of the same principles apply regardless of which version you are moving...



    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: Reducing deadlocks with update query hint or other method...

    The problem I see here is that you getting rows that have not been processed and then checking for bad data or other stuff and then processing them. Because of...



    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: Best way to update a column with the value from another column in the same record?

    The select statement that Chris gives is for you to see the data before updating once you are comfortable with the query you can remove the select statement as it...



    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 To make code for these Table?

    I'm not sure what you really want for you result set. Can you give us the actual results you want with real values and numbers?



    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: Considerations for Migrating from SQL 2005 to SQL 2012

    Have you tired running a search on "sql server 2005 to 2008 upgrade checklist" there a lot of good hits using that. Here is one from SSC http://www.sqlservercentral.com/blogs/pearlknows/2010/12/13/upgrading-to-sql-server-2008-a-comprehensive-checklist/



    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: Substring and trimming

    Please edit your post to include consumable DDL and sample data scripts. This will make answering you question a lot easier.



    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: Update the Time of Day, but not the Date

    Looks better than what I came up with:

    update @TheOriginalDates

    set DateWithNewTime = dateadd(ss,-1,dateadd(dd,1,cast(cast(CurrentDate as date)as datetime)))šŸ™‚



    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 - 256 through 270 (of 497 total)