Viewing 15 posts - 31 through 45 (of 77 total)
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?
July 18, 2007 at 9:45 am
declare
@table table
(
intID int IDENTITY(1,1)
,dtDATESTART
July 10, 2007 at 3:27 pm
So it's ressurecting an old thread but does anyone have the RemoveSolvedCells SP ?
Thanks,
Chris
July 9, 2007 at 9:16 am
I think by the time this argument is finished the IEEE 754 standard will probably be changed...
June 14, 2007 at 6:18 am
Legendary Thread!
Of course, after 28 pages I have to go back to the beginning now to remember what actually started this.
--Chris
June 12, 2007 at 8:28 am
Chris,
Well, your solution was certainly more efficient than mine using
SELECT Row_NUMBER() OVER (Partition
May 29, 2007 at 2:14 pm
thanks Jason, that did the trick. I always forget about derrived tables and joining on yourself.
Thanks,
Chris
May 16, 2007 at 8:34 am
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. ...
May 14, 2007 at 2:20 pm
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...
April 30, 2007 at 2:47 pm
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...
April 27, 2007 at 6:44 am
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...
April 26, 2007 at 6:24 am
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...
April 26, 2007 at 6:20 am
It's great except that it doesn't seem to work.
create
table #test
(
mydate datetime NOT
April 23, 2007 at 3:29 pm
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)
April 19, 2007 at 11:20 am
Viewing 15 posts - 31 through 45 (of 77 total)