Forum Replies Created

Viewing 15 posts - 301 through 315 (of 1,033 total)

  • RE: Index defaults 1

    Jack Corbett (6/14/2012)


    Okay, I got it wrong. I personally create constraints (other than PK and DEFAULT) separately from the CREATE TABLE statement, so when it says "...

  • RE: Index defaults 1

    venoym (6/14/2012)


    If I may. I answered Clustered. The reason is that I was trying to divine the intent of the author. Is the intent to test your...

  • RE: A SSIS Design Pattern for Change Data Capture

    Koen Verbeeck (6/13/2012)


    chris.j.clague (6/13/2012)


    Really, staging table and a merge statement is all you need (2008+). For 2005 I'd just use a proc to replicate the functionality of the merge statement....

  • RE: SQL Server Browser & DAC

    L' Eomot Inversé (6/13/2012)


    I suspect the point he is attempting to make is that a competent administrator will succede, not fail, because if he knows the port numbers he can...

  • RE: SQL Server Browser & DAC

    SQLDBA360 (6/13/2012)


    Do you mean the SQL Browser Service?

    +1 🙂

    Personally I've just started working with Service Broker... I was a little confused, but then I realized he meant SQL Browser...

  • RE: Duplicate Problem

    So the (Nolock) hint is probably allowing for a read where it should be blocked while the next order is being generated.

    Something like this should help.

    I don't see where @NextOrderNo...

  • RE: can we get this guy banned from the forums?????

    GilaMonster (6/7/2012)


    Doesn't mean he's write exactly that in exactly the same format with the same odd variable naming and indentation.

    I find if very strange you're calling someone a sloppy coder...

  • RE: can we get this guy banned from the forums?????

    Cadavre (5/25/2012)


    Michael Valentine Jones (5/24/2012)


    Brevity and obscurity

    declare @ char(3)

    set @=0

    while @<100

    begin

    set @=@+1

    print

    case when @%15=0 then 'FizzBuzz'

    when @%3=0 then 'Fizz'

    when @%5=0 then 'Buzz'

    else @ end

    end

    If I was asked this in an...

  • RE: can we get this guy banned from the forums?????

    GilaMonster (6/7/2012)


    mtassin (6/7/2012)


    Jeff Moden (6/5/2012)


    As a side bar, anyone who writes code as well formed as Cadavre did, even though it was a loop, has already caught my attention. ...

  • RE: can we get this guy banned from the forums?????

    Jeff Moden (6/5/2012)


    I've tried the ol' FizzBuzz test on some folks. A lot of them can't even begin it because they have never worked with things like Modulo (%)...

  • RE: can we get this guy banned from the forums?????

    Brandie Tarvin (6/7/2012)


    I'm sure this will come off sounding stupid, but I have never heard of Fizzbuzz. I see the solutions, but I don't understand what you're solving.

    Could someone elaborate...

  • RE: SQL 2012 BOL

    sestell1 (6/5/2012)


    I was a bit concerned they were going to make it available on-line only.

    Glad to hear that's not the case.

    I had a minor worry about it, but I also...

  • RE: can we get this guy banned from the forums?????

    Cadavre (5/25/2012)


    Michael Valentine Jones (5/24/2012)


    Brevity and obscurity

    declare @ char(3)

    set @=0

    while @<100

    begin

    set @=@+1

    print

    case when @%15=0 then 'FizzBuzz'

    when @%3=0 then 'Fizz'

    when @%5=0 then 'Buzz'

    else @ end

    end

    If I was asked this in an...

  • RE: SQL Server Logs

    jeff.mason (6/1/2012)


    Not so much a guess for me as process of elimination -- I have had to make use of the other three constantly as a DBA, so that was...

  • RE: Backups

    Koen Verbeeck (5/29/2012)


    Dammit, want my point! 😛

    Me too, though I learned about Master not allowing differential backups, Tempdb not allowing any was the obvious answer.

Viewing 15 posts - 301 through 315 (of 1,033 total)