Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Having a little trouble with generating routes using a nearest neighbour methodology with SQL Server in T-SQL.

Note: Using SQL Server 2008, I do not have access to spatial extensions.

Background:

I have a query, which through a series of loops and loops within loops builds routes, however, this query can take in excess of 10 minutes to traverse over 100+ visits.

I have a working system, but I would like to bring the execution time down. Trying to minimise loops as they seem to kill performance. I recently stumbled on CTEs and they have been wonderful for my optimisation so far.

I have the following table populated with all the visits that I have over a given period:

DECLARE @Visits TABLE 
(
    Unique_ID int identity(1,1), 
    Location_ID int, 
    Day_ID int, 
    Lat float, 
    Long float
)

And I have built a legend of all possible paths per day using:

DECLARE @VisitLegend TABLE  
(
    Day_ID int, 
    locationFromId int, 
    locationToId int, 
    distance float
)

INSERT INTO @VisitLegend (dayId, locationFromId , locationToId , distance)
SELECT 
v1.Day_ID,
v1.Unique_ID, 
v2.Unique_ID, 
[dbo].[udf_Distance_Between] (v1.Lat, v1.Long, v2.Lat, v2.Long)
FROM @Visits v1
JOIN @Visits v2 on v1.Unique_ID <> v2.Unique_ID 
         AND v1.Current_Day_ID = v2.Current_Day_ID 
         AND NOT (v1.Unique_ID = v2.Unique_ID and v2.Unique_ID = v1.Unique_ID)

Question:

Is there a way where I can step through each visit in the @Visits table, traverse the @Visit Legend table by the shortest distance without going to the same visit twice ?

I did make a stab at using a CTE with recursion, however my problem is that I cannot prevent it from selecting a visit again further up the tree, nor can I limit the recursive subset to the smallest distance without trying to use an aggregate or a joined subquery which would only work with references to the parent query.

My current attempt was:

;WITH pathBuilder(dayId, nodeId, distance) AS
(
    SELECT Day_ID, Unique_ID, CAST(0.0 as float)
    FROM @Visits 
        UNION ALL
    SELECT pb.dayId, vl.locationToId, vl.distance
    FROM pathBuilder pb
    JOIN @VisitLegend vl on vl.dayId = pb.dayId 
        and vl.locationFromId = pb.locationId 
)
SELECT * FROM pathBuilder

However I cannot seem to get this to select the locations from the visits table, then step through each in the legend following the shortest and never going back to a visitLocationId that it has already visited.

Intended result:

@VisitLegend has the following:

dayId       locationFromId locationToId distance
----------- -------------- ------------ -----------
1           1              2            5
1           1              3            4
1           2              1            5
1           2              3            7
1           3              1            4
1           3              2            7

Which would produce the sequences:

1, 3, 2
2, 1, 3
3, 1, 2

Any ideas ? Been banging my head against the wall for quite some time on this.

Otherwise is it a case of just using loops and bearing with the execution time?

Thanks in advance!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.