Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)

  • RE: Concurrent Timespan Calculation

    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...

  • RE: Concurrent Timespan Calculation

    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...

  • RE: Concurrent Timespan Calculation

    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...

  • RE: OLTP/OLAP Data Warehouse

    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)...

Viewing 4 posts - 1 through 4 (of 4 total)