Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

14
  • 5
    SQL Server does support row-level and table-level compression for things like this. Commented Mar 1, 2012 at 19:08
  • 2
    Since there is only 1 entry / sensor / day, do you need Table1? Commented Mar 1, 2012 at 19:57
  • 2
    What do you plan to do with this data, once it is in the database? I can't imagine being able to aggregate sensor data in a binary format, at least not easily or quickly at those levels. Commented Mar 1, 2012 at 20:35
  • 1
    100,000 sensors X 10 samples per second X 28Bytes per sample x 24 hours per day = 2.2TB per day. That is a lot to put into two tables. Commented Mar 1, 2012 at 20:55
  • 2
    @AlexKuznetsov: I was wondering about the SQL Server choice myself, but they are Microsoft gold partners, so I guess that is the main reason. Commented Mar 2, 2012 at 7:54