Forum Replies Created

Viewing 15 posts - 57,316 through 57,330 (of 59,070 total)

  • RE: suppress underline in output file

    Or... Use OSQL with the -h-1 option.  Don't forget to set the -s option to a tab... you can't do THAT from the command prompt... you will need to make...

  • RE: Capturing product affinities

    Not sure Michael is set on this... FULL joins return all rows from both tables 1 time, Cross joins will produce either a partial or full cartesian join (ex. if...

  • RE: Capturing product affinities

    Bingo!... Nice job, CK...

  • RE: How do the cursors work?

    Matti and John... you guys are "spot on" about temp tables.  John, I absolutely agree... lot's of times, a good set based solution will require NO temporal structure whatsoever.

  • RE: How do the cursors work?

    Correct... large table variables are NOT converted to temp tables...

    I strongly recommend AGAINST using table variables for anything more than a dozen or so rows because they cannot be...

  • RE: How do the cursors work?

    I strongly recommend AGAINST using table variables for anything more than a dozen or so rows because they cannot be made to use statistics... both table variables and temp tables...

  • RE: Text Field

    Outstanding... thank you for the feedback.

  • RE: Count Decimal Places

    Very cool, David... fast as all get out... but try this... obviously, we have to know exactly what the scale of the decimal places is to use it or we...

  • RE: How do the cursors work?

    >>But there are cases where a cursor is necessary.

    I would agree... BUT, the problem is most people don't really know where that...

  • RE: Capturing product affinities

    It'll take me a bit to setup some test data and write an example (an I'm going to bed for the night so not happening tonight), but I'm thinking a...

  • RE: Text Field

    John is spot on...

    I'll also add that storing text columns in the database is bad for too many reasons to post here.  If you must store text that execeeds...

  • RE: Convert number without rounding

    Lynn is absolutely correct... for those that can't find the ROUND function in Books Online here's what the 3rd operand of "1" means...

    function

  • RE: How do the cursors work?

    Spot on, Robert!

  • RE: Trigger to return SqlCommand

    As an alternative, check out sp_WHO in Books Online and it's undocumented cousin sp_WHO2. 

    Also, I haven't check how @@PROCID reacts in a trigger but it might be another simple...

  • RE: Creating sequential numbers

    Sorry... took a bit more than 10 minutes because of all the demo code I added but here's my suggestion... I used all temp tables so you could play without having...

Viewing 15 posts - 57,316 through 57,330 (of 59,070 total)