I’m using access 2000 mdb file with 500 MB size, when I make Select * From MyTable Where Phone=7744111 it takes too long, over 30 second to get results.
How can I increase searching performance? (I’m using vb6 and ado 2.8)
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
index the field [Phone] – seems you’re doing full scan
also try giving exact column list instead of ‘*’