I want to store the spreadsheet data in database, so right now i am using key/value pattern to store the same but its taking too much time to retrieve it from data base, if the data is huge. Do anyone has the best way to do the same. How Google saves their spreadsheet data?
Usually I have to show 30 to 40 columns and 10,000 rows on the web page with page size 500 or 1000 for pagination. Data is for line item with pricing.
My current database structure is as below.
Column Table Column_Id int Column_Name nvarchar(50) Column_Type nvarchar(50)
Value Content Table criteria_id int column_id int row_id int column_contents nvarchar(100)