Home Forums SQL Server 2008 SQL Server 2008 - General how to retrieve 100000 record from sqlite (Mobile Applications) ????!!!!!!! RE: how to retrieve 100000 record from sqlite (Mobile Applications) ????!!!!!!!

  • 100K records is a lot to do anything to in compact edition; it's mostly up to the processor and indexing. are you just searching in compact edition? what exactly are you doing with 100K of records? do you have a table structure yet?

    your title states "retrieve 100K records". that is going to be slow, no matter what. none of my portable devices could display 100K records without being dog slow; you'd be much better off paging record groups and displaying in batches, if that is what you are doing.

    you are using SQLite instead of SQL Server Compact Edition database?

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!