SQL Server CE Indexes

  • Thread starter Thread starter Chris Stephens
  • Start date Start date
C

Chris Stephens

Hi folks,

Can anyone give me some pointers on how ssce uses indexes and the best way
to implement them. For example, should I create separate indexes for all
fields used in a "where" clause, or a single index with all the "where"
clause fields?

Chris
 
For best perfomance is better to open the table and make a seek if you are
not using a multitable select.

Enrico
 
Back
Top