Forum Replies Created

Viewing 15 posts - 31,591 through 31,605 (of 39,754 total)

  • RE: 13 Disasters

    Ah, I've met David. "Fine" might not be the right word

  • RE: The 18 Month Debate

    Didn't know the plates stayed with the car. That's interesting.

    In VA and CO, when you sell the car, you remove the plates immediately. They are yours. The new owner must...

  • RE: 13 Disasters

    Anders brings up a good point, and one I'm addressing now. What happens if Steve leaves (I'm not planning on it).

    Everyone should have...

  • RE: The 18 Month Debate

    Anders,

    I guess I'd disagree on this. You should be allowed to go to court, but the film and record of the camera is evidence. I think you're responsible for your...

  • RE: SQL Server Licensing for Internet

    The summary is that if you have un-authenticated users, meaning not in your AD forest, you need a processor license. If you have employees or partners, with AD accounts, you...

  • RE: One query is hogging my baby!!!

    Yep, steve_smith, of (steve) Smith and Jones fame, hit it. It should run a little faster if that field is indexed and it's used.

  • RE: Where statement Joins vs join statement joins

    TheSQLGuru has the best reason. The old syntax will get dropped.

    I think the inner join syntax reduces mistakes and it's easier to read, but that's personal preference. I never had...

  • RE: SQL SERVER RECOVERY TOOLS

    Actually in SQL Server, a system backup of the host Windows system wouldn't get the databases. The files would be locked, so without a database backup plan by the DBA,...

  • RE: Working with dates

    Are you looking at the right dates? Meaning are there multiple dates in the table and the one in the WHERE clause is the right one?

    It worked for me as...

  • RE: Book Recommendations...

    Sounds more like you want some sort of SSIS package. The header row with rowcount will be slightly tricky. You need this info first, so it's probably two queries you're...

  • RE: Use of Inline views

    I do agree with Jeff. I try to avoid outer joins where it makes sense, but definitely test both ways and be sure you understand the difference between the ON...

  • RE: Wide index

    Also, in addition to Jeff and Jim, the index need not be clustered.

  • RE: SQL Agent not running any jobs!

    Are you sure the agent service is running? You can create jobs without it being started.

  • RE: Dedicated SQL Servers & Allowing Other Software on Server

    I'd agree with Joe, concerns would be sp_oacreate, not the driver. Drivers do flake, leak memory, etc., but in the past for me that's resulted in not being able to...

  • RE: Lookup table

    You need to specify the fields here from the first table and join in the second table for each value.

    So

    select

    a.pkcol

    , b.val 'fever'

    ...

Viewing 15 posts - 31,591 through 31,605 (of 39,754 total)