Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Basic index question
Message
From
18/03/2005 10:32:45
 
 
To
18/03/2005 09:46:37
General information
Forum:
Microsoft SQL Server
Category:
Database management
Miscellaneous
Thread ID:
00997232
Message ID:
00997255
Views:
13
>Does just having a database table indexed on the field you are using speed up a join with another table that is indexed on the joining field speed it up automatically or do you have to pick the index you want to use.
>
>i.e.
>
>select l.order_date, i.partnumber
>From


Sorry I hit the tab and I think it sent this.

If I Wanted to join the Fulfillment_Transaction table to the orders table

FROM
orders o

INNER JOIN

Fulfillment_Transaction ft

ON o.orders_ID = ft.trans_key01


could I use the
IX_Fulfillment_Transaction_key01
nonclustered
located on PRIMARY
trans_key01

OR

Could I speed up

SELECT
trans_key01
FROM
Transaction_Fulfillment
INTO

#TEMP
WHERE
ft.trans_module = 'ORDERS'
AND
ft.trans_submodule = 'SHIPPED'
AND
ft.trans_date between @startdate and @enddate

USING the IX_Fulfillment_Transaction_key01 index.

Thanks
Jim
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform