Forum Replies Created

Viewing 15 posts - 21,796 through 21,810 (of 22,189 total)

  • RE: Stupid Question

    Guiness is OK, still not as good as a real ale. Corona? Blech! The best beer out of Ol Mehico is Bohemia. Great stuff. Hold the friggin' lime.

  • RE: Empty a database

    Actually, I haddn't thought of that, but yeah, in most cases this is probably quicker.

  • RE: Stupid Question

    Ooh, Steve, if you're taking orders, grab a keg of something... how about Ruddles County. If not that, use your judgement.

  • RE: Stupid Question

    I'm jealous Steve. English beer... Mmmmmm! A few pints of real ale and I'll hug everybody.

  • RE: SQL question regarding merging rows

    Looks like the SuppContacts table has one row for email with phone null & one row for phone with email null? Better design would probably be to seperate these into...

  • RE: self-joining derived tables?

    CTE's are only available for the next SELECT statement. You can't define a CTE & then run multiple selects against it. If you need that kind of functionality, you'll need...

  • RE: Select statement with a join where result depends on an if statement

    I tried setting up the two tables and putting together some sample data, but I can't run your query. As I suspected it returns more than one row in the...

  • RE: Stupid Question

    Holy Cow! Discussions around the proper placement of the f-bomb in sentence structure in order to communicate with the squids is serious? I clearly need to get out more.

    <hug>

    I'll be...

  • RE: Select statement with a join where result depends on an if statement

    It looks like the correlatted query can return more than one value and that will cause the query to fail.

    Here's a first pass substitute:

    SELECT ItemNo_,ItemDescription, COALESECE(a.Description,b.Description)

    FROM Item

    JOIN ItemExtraDescription a

    ON Item.No_=a.No_

    AND...

  • RE: Debug SP

    I believe that debugging is only available through Visual Studio.

    http://msdn2.microsoft.com/en-us/library/ms165034(VS.80).aspx

  • RE: Empty a database

    Quick and dirty, completely inelegant and unefficient and you might have to run it two or three times in a row, but it will do the job.

  • RE: Upgrades

    I think most of the other posters have already hit the high points. Upgrade and development times are just too long to support short release cycles. We started working with 2005...

  • RE: Stupid Question

    I've been reading Hornblower & Sharpe & Aubrey/Maturin novels my entire life. That and growing up on Monty Python and British television... It's just there. Plus, I used it to...

  • RE: Stupid Question

    Hey watch it! I resemble that remark.

    Yeah, old, weak joke but unfortunately true.

    How about a manly hand shake?

  • RE: Fatal error 824

    You got trouble in River City. According to MS:

    The 824 error indicates that a logical consistency error was detected during a read. A logical consistency error is a clear indication...

Viewing 15 posts - 21,796 through 21,810 (of 22,189 total)