Skip to main content

Jason Rushton

Member since Dec 11, 2008

Recent Blog Comments By Jason Rushton

  • Getting @@RowCount After SQL INSERT INTO Statement

    Posted on Nov 28, 2007 at 5:39 PM

    Triggers are the big thing that can give you problems. If your insert initiated a trigger which did it's own insert, using @@IDENTITY would give you the identity for the triggers insert. Scope_Identity() would give you the identity you were probably expecting.... read more »

  • Getting @@RowCount After SQL INSERT INTO Statement

    Posted on Nov 28, 2007 at 5:02 PM

    Christoph: Just a note, but you should really use SCOPE_IDENTITY() rather than @@IDENTITY, because you can run into conditions where you get an ID you're not expecting otherwise.... read more »

  • Getting Only The Date Part Of A Date/Time Stamp in SQL Server (Revisited)

    Posted on Sep 21, 2007 at 11:47 AM

    We do have a function for doing this. However, from just testing it in a group by for the year, involving around 300,000 records, the inline version is about 4x faster. We use the function for param sets, and in the select clause, but if we're at all concerned about speed, we avoid functions if at... read more »

  • Getting Only The Date Part Of A Date/Time Stamp in SQL Server (Revisited)

    Posted on Sep 21, 2007 at 11:09 AM

    We use the convert Char(10) method here too. CONVERT( DateTime, CONVERT( Char(10), ci_importDate, 101 ) ) I benchmarked the different methods in our database hoping yours might be faster, because we use it for date grouping A LOT for our in house reporting. Every thing I run shows the two you post... read more »

I believe in love. I believe in compassion. I believe in human rights. I believe that we can afford to give more of these gifts to the world around us because it costs us nothing to be decent and kind and understanding. And, I want you to know that when you land on this site, you are accepted for who you are, no matter how you identify, what truths you live, or whatever kind of goofy shit makes you feel alive! Rock on with your bad self!
Ben Nadel