Forum Replies Created

Viewing 15 posts - 181 through 195 (of 369 total)

  • RE: Difference between Like operator and Contains operator

    garethmann101 (11/20/2008)


    One more thing on the full-text index. Is that fully contained within the database? I noticed when I created it that I first had to create a catalog. When...

  • RE: Backup and Recovery

    Lee Nadelman (12/11/2008)


    You have to presume some things in this question. For example, the question didn't state that the INSERTs were committed. The question doesn't even state...

  • RE: Backup and Recovery

    Peter Schott (12/11/2008)


    Gotta agree with the majority on this one - the existence of a full database backup was implied and the success of the log backup was implied. ...

  • RE: Backup and Recovery

    Peter Schott (12/11/2008)


    ... Oh well, a decent learning experience and I'll take my point from this post.

    You're still short 2 points as it was a 3 point question!

  • RE: Backup and Recovery

    michael vessey (12/11/2008)


    Some people are suggesting that we are assuming that the log backup is successfull but that this is not explicitly stated.....

    ok - to take that point further -...

  • RE: retrieve the previous version of a stored procedure

    Grant Fritchey (12/10/2008)


    Pull a previous copy out of source control...

    If you don't have your code under source control, here's the wake-up call to get it there.

    You can't retrieve a previous...

  • RE: Backup and Recovery

    I agree with all of the other posters that the question is very misleading. To have a successful log backup one must have the initial full backup.

    I suspect that...

  • RE: How to sync database schema from a database to another?

    This has been extensively discussed on the forum along with some suggestions, including use of a proper source control system.

    See my message (474053) as to how we do it in...

  • RE: SPs/UDFs across different databases

    I'm with Grant.

    I.e., we are a SaaS environment with a separate database for each customer all running the same code.

    We store all of our code (one file per object) in...

  • RE: varchar versus nvarchar

    I'll qualify my responses as follows:

    If you are designing and building a system that will be used within a single language culture then by all means choose the proper database...

  • RE: varchar versus nvarchar

    GilaMonster (12/4/2008)[hr

    There's a difference between extended ASCII and unicode.

    True, but the support of extended (8-bit) ASCII is also governed by the collation of the database and the calling application, among...

  • RE: varchar versus nvarchar

    Note that even in America, extended ASCII is very common. Just think of all of peoples names that have accents in them. Or the word resumé. Let...

  • RE: Connect By Prior

    Having 10+ years of Oracle experience, I understand your problem.

    SQL Server doesn't offer the same hierarchical functionality as Oracle's "CONNECT BY" clause.

    The solutions are:

    1. Use a recursive Common Table Expression...

  • RE: T-SQL Function to Determine Holidays in SQL Server

    The Title is completely misleading. "Date of Easter" formulas have been around for decades. It was one of my early computer science homework assignments.

  • RE: Extracting a Numeric Reference from a VARCHAR field

    Additionally,

    1. It doesn't properly support a legitimate value of -1 as -1 is being used to indicate that the value is not numeric.

    2. An explicit CAST is needed in the...

Viewing 15 posts - 181 through 195 (of 369 total)