Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
SQL Server speed (again, *sigh*)
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Client/serveur
Divers
Thread ID:
00254302
Message ID:
00254379
Vues:
24
>SELECT ID FROM MyTable WHERE LName LIKE 'SM%'
>
>This returns about 12,000 records in 45 seconds.
>
>If I run this T-SQL statement:
>
>SELECT LName FROM MyTable WHERE LName LIKE 'SM%'
>
>This returns about 12,000 records in only 2 seconds! Very big difference.
>

The server is having to do a full table scan of all the IDs while comparing the LNAME parameter. In the second one only the index is being used. What do you get if you try:

SELECT LName, ID from MyTable where LName LIKE 'SM%'

and

SELECT ID, LName from MyTable where LName LIKE 'SM%'
Mark McCasland
Midlothian, TX USA
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform