SQL Indexes

W

William Reyes

I have a question regarding indexes.

This may be a SQL newsgroup question. If it is I apologize. I actually
posted it on both just in case.

If I create an index on a table. Will this index be checked through when I
execute a select statement from VB.NET or is this index only used through
strored procs within sql.
 
J

Joe Fallon

Any SQL Statement will cause the server to generate a query plan.
If the query plan decides to use an index, it will.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top