Forum Replies Created

Viewing 15 posts - 466 through 480 (of 497 total)

  • RE: Are the posted questions getting worse?

    Stefan Krzywicki (10/8/2013)


    Well, time to polish the resume and start looking for work. Just given a 1 month notice.

    They want to keep me on a retainer for 5 hours a...



    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: Strange behavior with nolock hint

    If everything is working fine without the NOLOCK hint why do you still want to use it? NOLOCK has the potential to get you "dirty" matches.



    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: LOCK/Wait on Begin Tran and Commit

    I'm not sure what you mean when you say some of your data or the other person's data is getting inserted? Do you mean that not all of the data...



    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: SELECT for UPDATE....

    Would something like this work?

    update ...

    from TableA a

    join UpdatePool b on a.CustomerID = b.CustomerID

    delete from UpdatePool

    from TableA a

    join UpdatePool b on a.ID = b.ID

    select @RowCnt = @@ROWCOUNT

    insert into...



    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 Based on Select with Multiple Returns

    Since you are comparing 3 columns and it doesn't appear to have any different about them you could use a function like binary_checksum to create a single value for the...



    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: Setting database OFFLINE and ONLINE does not "appear" to clear the cache.

    I have confirmed your results on 2008, 2008 R2 and 2012. Cache was not cleared.



    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: Delete Row from one table if other table with multiple rows meet the condition

    You need to provide some DDL for this problem. How about some create table statements with actual column names and real data with expected results.



    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: Backup users and permissions before database restore

    Do you use a scheduled job to refresh the test database? If so, then add a step to run your script. If you don't use a scheduled job how do...



    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: Delete Row from one table if other table with multiple rows meet the condition

    This looks like a homework assignment or something. You need to look up how to do a join in a delete statement or using the EXISTS 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: How to collapse rows but take a specific value?

    Next time you post a question like yours please try to include a sample create table statement along with some test data like my post back to you. This will...



    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 collapse rows but take a specific value?

    Here you go:

    create table ResetData (accountNumber int, MaturityDate datetime, ResetFreq char(3), Amount decimal(6,2))

    insert into ResetData

    values (123 , '20140331' , '1D' ,100.00)

    ,(123 , '20140331' , '1M' ,2400.00)

    ,(123 , '20140331'...



    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: Are the posted questions getting worse?

    SQLRNNR (10/7/2013)


    Steve Jones - SSC Editor (10/7/2013)


    SQLRNNR (10/7/2013)


    Not a Broncos fan. But I am hoping to see that offense score big every week. 700pts in a season seems...



    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: Are the posted questions getting worse?

    Steve Jones - SSC Editor (10/7/2013)


    WayneS (10/3/2013)


    Who is going to the Summit this year? (I need to figure out who to meet up with...)

    Mon/Tues only for me.

    I will be there...



    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: Are the posted questions getting worse?

    I'm just glad the Packers started winning again. The Vikings added another QB? I missed that.

    Josh Freeman is the newest QB in Minn. I just need the Bears to start...



    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: Recursive Stored Procedure

    Can you provide some DML and some sample data with a required output? This will help you get an answer quicker.



    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 - 466 through 480 (of 497 total)