Forum Replies Created

Viewing 15 posts - 6,076 through 6,090 (of 9,399 total)

  • RE: Current Date order Query

    Sean Lange (5/7/2015)


    CURDATE is a mysql function. This is a sql server forum. You are likely going to get better assistance from a mysql forum.

    Nice catch, Sean. I wouldn't...

  • RE: Pass param to Stored proc

    Sean Lange (5/7/2015)


    spaghettidba (5/7/2015)


    T-SQL is a horrible tool for this job and using the CPU of the SQL Server box to send pings is not a wise choice, generally speaking....

  • RE: Today's Random Word!

    crookj (5/7/2015)


    Slate

    Stone

  • RE: Today's Random Word!

    BWFC (5/7/2015)


    Bandit

    Thief

  • RE: vNext 2016

    Brent Ozar (5/7/2015)


    Ed Wagner (5/7/2015)


    While I guess I'd expect Microsoft to put more and more into Azure, it has a long way to go to catch up with the boxed...

  • RE: Today's Random Word!

    Eirikur Eiriksson (5/7/2015)


    Ed Wagner (5/7/2015)


    Revenant (5/6/2015)


    whereisSQL? (5/6/2015)


    DonlSimpson (5/6/2015)


    Ed Wagner (5/6/2015)


    Eirikur Eiriksson (5/5/2015)


    Ed Wagner (5/5/2015)


    DonlSimpson (5/5/2015)


    SQLRNNR (5/5/2015)


    Revenant (5/5/2015)


    Ed Wagner (5/5/2015)


    TomThomson (5/5/2015)


    SQLRNNR (5/5/2015)


    skaar

    hulk

    Hogan

    Champ

    CHUMP

    Chimp

    Zoo

    Smell

    Code

    Bug

    Fix

    Coordinates

    Schedules

    Overruns

    Buffer

  • RE: vNext 2016

    While I guess I'd expect Microsoft to put more and more into Azure, it has a long way to go to catch up with the boxed product. I just...

  • RE: Pass param to Stored proc

    Using the @id variable to simulate your parameter, you can do something like this:

    DECLARE @id NVarchar(15) = N'127.0.0.1'

    DECLARE @strCmd Nvarchar(20) = N'ping ' + @id;

    EXECUTE xp_cmdshell @strCmd;

    Hopefully, this is a...

  • RE: Table Without PK

    Another difference is when you create nonclustered indexes on the heap, each row can't inherit the bytes of the primary key. Instead, it inherits the bytes of the RID...

  • RE: Today's Random Word!

    Revenant (5/6/2015)


    whereisSQL? (5/6/2015)


    DonlSimpson (5/6/2015)


    Ed Wagner (5/6/2015)


    Eirikur Eiriksson (5/5/2015)


    Ed Wagner (5/5/2015)


    DonlSimpson (5/5/2015)


    SQLRNNR (5/5/2015)


    Revenant (5/5/2015)


    Ed Wagner (5/5/2015)


    TomThomson (5/5/2015)


    SQLRNNR (5/5/2015)


    skaar

    hulk

    Hogan

    Champ

    CHUMP

    Chimp

    Zoo

    Smell

    Code

    Bug

    Fix

    Coordinates

    Schedules

  • RE: Resource Governor 2014

    Thanks, Steve. Nice question to get the brain cells going.

  • RE: execute xp_cmdshell - cant get it to work - no matter what - any one?

    Thanks, Jeff, for you help on this one. I was off yesterday and nowhere near a computer.

    Lynn, glad to hear it's working.

  • RE: Idempotent

    I think the whole approach is the right one. Writing stuff that works, checking itself along the way and doing the work that needs to be done, is the...

  • RE: Numeric Data Types

    G ood question. It caused me to really think it through and caused a twist or two along the way. Thanks.

  • RE: Central Management Servers

    Nice question, but I guessed. I've heard good things about CMS, but never had the chance to really dig into them and play. Thanks.

Viewing 15 posts - 6,076 through 6,090 (of 9,399 total)