Forum Replies Created

Viewing 15 posts - 181 through 195 (of 1,923 total)

  • RE: just curious

    capn.hector (4/27/2012)


    ColdCoffee (4/27/2012)


    Sean Lange (4/27/2012)


    ColdCoffee (4/27/2012)


    Sean Lange (4/27/2012)


    Keep in mind that none of us (or at least most of us) did not get the opportunity to see your now retracted...

  • RE: just curious

    Sean Lange (4/27/2012)


    ColdCoffee (4/27/2012)


    Sean Lange (4/27/2012)


    Keep in mind that none of us (or at least most of us) did not get the opportunity to see your now retracted comment. Perhaps...

  • RE: just curious

    Sean Lange (4/27/2012)


    Keep in mind that none of us (or at least most of us) did not get the opportunity to see your now retracted comment. Perhaps the guilt of...

  • RE: just curious

    Lynn Pettis (4/27/2012)


    ColdCoffee (4/27/2012)


    Lynn Pettis (4/27/2012)


    Just remember, he isn't showing us actual code.

    He? the names sounds like a SHE :-D. Whats your take ?

    {Lets, for fun, hijack this thread :-P}

    I...

  • RE: just curious

    Lynn Pettis (4/27/2012)


    Just remember, he isn't showing us actual code.

    He? the names sounds like a SHE :-D. Whats your take ?

    {Lets, for fun, hijack this thread :-P}

  • RE: just curious

    Lynn Pettis (4/27/2012)


    ColdCoffee (4/27/2012)


    I guess the OP wants to know why NULL cannot be used with = operator but can be used with the keyword IS

    Riya_dave, it depends on this...

  • RE: just curious

    I guess the OP wants to know why NULL cannot be used with = operator but can be used with the keyword IS

    Riya_dave, it depends on SET ANSI_NULL setting...

  • RE: return multiple columns based on single CASE evaluation

    What i see from the CASE statemnet is that, based of the payment_id value, he is choosing from 2 different tables.. If thats the case, then i dont think there...

  • RE: subquery Q?

    SQL_Nw (4/26/2012)


    What am I missing here?

    First, you missed providing the data in readily consumable format.

    Second, you missed showing us your subqeury query.

    Third a JOIN is in order...

  • RE: comparison operator for number values?

    Polka, as others have already noted, you query is performing exactly what u r asking it to

    "Get me the list of values from Validate tables that do not have 23...

  • RE: Multiple Part Descriptions

    select partnumber, count(distinct partdesc)

    from parttable

    group by partnumber

    having count(distinct partdesc) > 1

  • RE: Convert(Varchar,GetDate(),???) - List of Format Codes

    130 and 131 should be using NVARCHAR as they may produce Hijri script

    Like this:

    Select 130, Convert(NVarchar(50),GetDate(),130) Union All

    Select 131, Convert(NVarchar(50),GetDate(),131)

  • RE: Dynamic sorting; ASC VS DESC

    You would better off be writing it in IF...ELSE block. THat would produce a decent plan always.

    But if u insist in using single query to do that, then u can...

  • RE: trimming a text string

    Try this 🙂

    declare @string table ( string varchar(200) )

    insert @string

    select '\Beverages\Soda Pop\Mountain Dew'

    union select '\Beverages'

    union select '\\Food'

    select s.string , crsapp.Idx

    ...

  • RE: Format function

    Can you just show us some sample data?

Viewing 15 posts - 181 through 195 (of 1,923 total)