Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Significance of index names?
Message
From
10/06/2011 02:41:14
Walter Meester
HoogkarspelNetherlands
 
General information
Forum:
Microsoft SQL Server
Category:
Other
Environment versions
SQL Server:
SQL Server 2005
Miscellaneous
Thread ID:
01513532
Message ID:
01513971
Views:
48
>>Dmitry,
>>>
>>>In VFP index tags have certain significance as they are used in SEEK() function. When creating index tags in SQL Server does it really matter the names of the index tags? If yes, what is it, then I will follow a certain convention.
>>
>>Not really, though, in SQL server you can within SQL select statement add a hint to which indexes to use.
>
>Walter,
>How do you indicate (or hint) in the SQL Select what index tag to use? I didn't know you can do it.
>Thank you.

SELECT * FROM Table WITH (INDEX(IndexName)) WHERE ...

See 'Table hints' on the SQL server Books online.

Note that is is not recommended as you overrule the SQL servers optimizer to determine the best query optimization plan. In some very specific cases it might be helpfull to specify, but in general you just want to make sure you've got the right indexes and let SQL server itself determine the best way to optimize the query.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform