Inserting Large volume of data in SQL Server 2005
        Posted  
        
            by Manjoor
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Manjoor
        
        
        
        Published on 2010-03-16T14:50:43Z
        Indexed on 
            2010/03/17
            6:51 UTC
        
        
        Read the original article
        Hit count: 437
        
We have a application (written in c#) to store live stock market price in the database (SQL Server 2005). It insert about 1 Million record in a single day. Now we are adding some more segment of market into it and the no of records would be double (2 Millions/day).
Currently the average record insertion per second is about 50, maximum is 450 and minimum is 0.
To check certain conditions i have used service broker (asynchronous trigger) on my price table. It is running fine at this time(about 35% CPU utilization).
Now i am planning to create a in memory dataset of current stock price. we would like to do some simple calculations.
I want to know different views of members on this.
Please provide your way of dealing with such situation.
© Stack Overflow or respective owner