Forum Replies Created

Viewing 15 posts - 31 through 45 (of 77 total)

  • RE: How To use SELECT * FROM sys.dm_db_missing_index_details

    from what I've read the DMV gives the best results for 'reading' data, is there any way to determine (other than doing) if the include columns could make matters worse?

  • RE: How many records overlap on a date range

    declare

    @table table

    (

    intID int IDENTITY(1,1)

    ,dtDATESTART

  • RE: SQL Sudoko

    So it's ressurecting an old thread but does anyone have the RemoveSolvedCells SP ?

    Thanks,

    Chris

     

  • RE: Bankers Rounding

    I think by the time this argument is finished the IEEE 754 standard will probably be changed...

     

  • RE: Bankers Rounding

    Legendary Thread!

    Of course, after 28 pages I have to go back to the beginning now to remember what actually started this.

    --Chris

     

  • RE: grouping without aggregates

    Chris,

    Well, your solution was certainly more efficient than mine using

    SELECT Row_NUMBER() OVER (Partition

  • RE: help with a query

    thanks Jason, that did the trick.  I always forget about derrived tables and joining on yourself.

     

    Thanks,

    Chris

     

  • RE: help with a query

    basically I need it for the entire table and won't know what the starting date is going to be.  On 12/31 you had 10000 and on 1/31 you had 12000. ...

  • RE: My Projects Have Never Failed

    So if you had a project that you worked on for 3 years, met technical, database and user expectations and deadlines along the way but then the product simply failed...

  • RE: math functions in SQL?

    Thanks for the help

    Chris

  • RE: denying a specific user access to database...

    We're using windows authentication. What we are trying to do is to deny the developer DIRECT access thru the SSMS interface.  We dont want him to be able to change...

  • RE: how many columns is ''''too many'''' ?

    Thanks for the input, we still need to do alot of evaluation before we touch anything.  I'm still trying to get up to speed on the database layout (into my...

  • RE: math functions in SQL?

    Actually, the more I think about this one, it might be a good canidate for a CLR assembly.  Without diving back into statistics and more math than I really want...

  • RE: Validation of Today''''s date

    It's great except that it doesn't seem to work.

    create

    table #test

    (

    mydate datetime NOT

  • RE: Filtering strings

    well, you could do something like 'not in'

    select names from list where names not in ('foo','bar','qwerty')

    or

    select names from list where names not in (select excludenames from filtertable)

     

Viewing 15 posts - 31 through 45 (of 77 total)