Viewing 4 posts - 1 through 4 (of 4 total)
The table has about 5.5 million rows, and if it helps, the properties of the table specify 555MB of data space and 200MB of index space. I don't know...
October 18, 2007 at 1:45 am
Yes, that is the idea. I think this is similar to your idea:
declare @dtCurrent datetime
declare @iTotal int
select @dtCurrent='10/15/2007 12:00'
while (@dtCurrent < '10/15/2007 13:00')
begin
select @iTotal=count(ID)
from Sessions
where @dtCurrent between StartTime and...
October 18, 2007 at 12:48 am
That is pretty much what I want to do. but in your example, the @pointInTime will be every second for a given interval. For example, on the web-front end...
October 17, 2007 at 11:54 pm
What are some methods of getting data from the OLTP instance to the OLAP instance? Triggers or scheduled stored procs? Is there anything within SQL Server (some type of replication)...
April 20, 2005 at 7:11 am
Viewing 4 posts - 1 through 4 (of 4 total)