Forum Replies Created

Viewing 15 posts - 56,506 through 56,520 (of 59,067 total)

  • RE: Regular Expression Problem

    Crud... I can't make COLLATION work anyway shape or form with LIKE (thought I did but was wrong)... it only works with an equates...

    This one works though... guaranteed...

    April 29, 2007 at 3:51 pm

    #703179

  • RE: Regular Expression Problem

    You mean the second example I posted didn't work? (The first example was how NOT to do it)...

  • RE: Question on Trigger

    Recommend you post the actual trigger code and a bit of information on the schema of the tables...

  • RE: Add space in data

    That's because it looks like you're trying to add spaces to a numeric value which has no effect.  Convert the street number to VARCHAR and then add the spaces to...

  • RE: Release of S locks

    Sorry, Joe... I misread the post quite badly... thought you were trying to do locked reads.

  • RE: Worst Practices - Making Databases Case Sensitive (Or Anything Else)

    I realize this is a really old thread, but I read it with some great interest... not one of the folks that claimed that case sensitivity created that mythical 40%...

  • RE: Regular Expression Problem

    That requires a change in "COLLATION"... unfortunately, there's a bug in SQL Server that destroys the ability to use collation where a range of letters is included in a LIKE......

  • RE: SubQuery Error

    Then, the trigger is wrong... it should be able to handle both.

  • RE: Stored Procedure timing

    Allen,

    First, there is no reason, whatsoever, to store the "M" in the sequence table.  All it does is slow everything down with unneccessary character conversions.

    Using the good example that Mr....

  • RE: Question 1

    Depending on how and where the function is used in a WHERE clause, it can drastically and negatively affect performance because it may disable the ability for INDEX SEEKs to...

  • RE: SubQuery Error

    That's a bit, well, insane... why is the trigger there in the first place if you're going to just disable it?  Either the trigger is bad or your code is...

  • RE: XP_FileExists

    IF you're going to use an undocumented sproc, why not go all the way and get ALL the filenames at once?

     CREATE TABLE #Directory (RowNum INT IDENTITY(1,1),FileName SYSNAME,Depth...

  • RE: Stored Procs in Stored Procs

    Unless they are set based procs... "Death by SQL"... the idea of code reuse to process single records will absolutely kill performance and make more maintanence nightmares than you can...

  • RE: Release of S locks

    SET TRANSACTION ISOLATION LEVEL SERIALIZABLE

  • RE: Stored Procedure timing

    First question would be... Why aren't you using an IDENTITY column to do this along with Scope_Identity.

    Next question would be... Please post your SP...

Viewing 15 posts - 56,506 through 56,520 (of 59,067 total)