Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How can I change a field property (index) automatically

Status
Not open for further replies.

jeep2001

Programmer
Dec 15, 2005
134
US
I have a database app where weekly I need to import new data. I have 2 make table queries...is there a way to change a field attribute so that the field is indexed....
the index property set to true...THis way the queries that its involved in will be faster.
 
A starting point (SQL):
CREATE INDEX yourIndex ON yourTable (yourField );

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top