Forum Replies Created

Viewing 15 posts - 1,666 through 1,680 (of 3,658 total)

  • RE: IT Security

    Steve Jones - SSC Editor (10/6/2013)


    Jeff Moden (10/5/2013)


    ...

    I guess that qualifies as a "rant", huh?

    Yep, and I agree.

    Ditto from me.

  • RE: The Ratio

    Jeff Moden (10/5/2013)


    Heh... you have to trust me on this... You DON'T actually want them to do their own backups. 😉

    Backups fine, restores...not so much

  • RE: Hybrid Databases

    Full-text searching has always been something of a disappointment for me.

    SSIS is one of those tools that when I come back to it I spend a week swearing at it...

  • RE: The Need for Tape

    Encrypt your data backups.

    Store the certificates used to encrypt your backups somewhere else but equally secure.

    Limit access to both the certificates and the backups to a tightly and formally designed...

  • RE: It Happens

    It's a harsh fact of life and a quick look down the list of fixes in the older versions of SQL Server reveal some quite nasty bugs.

    There is inherrent complexity...

  • RE: Can SQL Server do ‘Big’?

    There's big by design and big by lack of design.

    Big doesn't necessarily mean complex or difficult it really does depend on your use case. For example, the Microsoft Fastrack...

  • RE: Soundex - Experiments with SQL CLR

    @charles, exactly so.

    One of the implementations of Soundex stored the soundex value of a holiday destinations in an indexed field.

    When the customer entered a location the system would...

  • RE: Soundex - Experiments with SQL CLR

    The hardest part of TDD for me was the change in mind set I needed to make. Couple that to the difference between app development and db development and it...

  • RE: Soundex - Experiments with SQL CLR

    Don't put Soundex inside the difference function as Soundex comparison is implicit in the function.

    select Difference(Soundex('Brighton'),Soundex('Bob')) -- Returns 4

    select Difference('Brighton','Bob') --Returns 1

  • RE: Soundex - Experiments with SQL CLR

    Take a look at http://ntz-develop.blogspot.co.uk/2011/03/phonetic-algorithms.html

    The Rolls Royce solution is Metaphone3 which I believe is in the latest Apache SOLR.

    I had planned a followup article based on the link above. ...

  • RE: Soundex - Experiments with SQL CLR

    jimbobmcgee (9/12/2013)


    See Char.IsLetter -- a generically useful, centrally maintained library method, robust enough to check for lower-case letters. 😉

    Oh bugger, you can tell I don't do much .Net work!


    This...

  • RE: Developer Pressure

    Continuous integration is a no-brainer. JFDI.

    Continuous deployment makes me nervous from a DBA perspective.

    If a deployment means a change to a big table and replication is involved then it...

  • RE: Stunned

    First, what the <insert your own expression here>?

    My expression would be "Kalen Delaney".

    Ada Lovelace - possibly the first ever computer programmer.

    Grace Hopper "the mother of Cobol"

    Frances Allen - Won a...

  • RE: The Third Evolution

    I saw a program about Bill Gates and comments made by (I think) an IBM exec was that he was a better engineer than the engineers in the room, he...

  • RE: Always Abstract

    Don't forget ORM tools. Some of the complexity of what needs to be done either means complexity is pushed into the application or implemented using triggers.

Viewing 15 posts - 1,666 through 1,680 (of 3,658 total)