Forum Replies Created

Viewing 14 posts - 16 through 29 (of 29 total)

  • RE: SQL Sudoko

    This is not the first TSQL Sudoku puzzle solver/generator (see, for example The Sudoku Puzzle Generator. However, it is nicely explained. The two approaches are completely different. Perhaps, with...

  • RE: convert blob to table

    Ah. That explains it nicely. I was once faced with a very similar problem in processing mechanical test data for engineers. The test equipment, depending on its age, would export...

  • RE: convert blob to table

    Hmm.. Well, here goes anyway, assuming it is coming from a text field in a table, here are the two functions and sample to illustrate a way of doing this...

  • RE: convert blob to table

    It is an intriguing problem. Such a device can be got to work perfectly happily, and I'd hate to think anyone was put off trying. Am I right in believing...

  • RE: Length of a string

    if you don't want the worry of Datalength and remembering the the division by 2 for NVarchars, but you want an accurate length that includes trailing spaces,  why not simply...

  • RE: Dreadlocks - a new haircut for your database

    I agree completely with alzdba. My suggestion regarding deadlock_priority was meant to be that you choose which processes are good candidates to be a deadlock victim and then  design them...

  • RE: Dreadlocks - a new haircut for your database

    I came across this, which describes the pain of being a victim of a deadlock The DBAs Demise, by Phil Factor, a tribute to 'The Streets of Loredo'. On...

  • RE: The Daily Lookup

    It is an intriguing database design, but I wouldn't want to dismiss it out of hand as wrong without knowing a lot more about the application. I'm interested in the...

  • RE: Split backup into smaller files

    I use Red Gate's SQL Server backup tool on a database of around 480 Gig. It allows you ro specify however many files you want to split the backup so...

  • RE: Red Gate, Idera, LiteSpeed 64 bit support

    Yes. I use Red Gate SQL Backup in a production environment, and I've checked with Red Gate. They say that Red Gate will support SQL Backup on SQL...

  • RE: Deleting Duplicate Records

    I'm surprised that anyone working with SQL Server needs lessons in removing duplicates, and puzzled at the complexity of this cursor-based solution originally published. A better solution has already been pointed out in the...

  • RE: Phil Factor''''s lastest missive. Lengthy but good fun

    Indeed so. It is strange how one is pressured into doing something more grown-up than programming as soon as one gets a grey-hair or two. The older I get the...

  • RE: Backup software recommendations

    We regard 50 Gig databases as small fry at USP, because our NewsScape database is now well over the 400 gig and rising. This application has been collecting all the...

  • RE: Count a string value within a VARCHAR column

    --I have to do quite a bit of this sort of work

    --I use a generic function to return the nth part of a

    --string delimited by whatever delimiter you specify

    Create function...

Viewing 14 posts - 16 through 29 (of 29 total)