Recently, I had a need to populate the salesperson's manager1, 2 and 3 - that is - his manager's manager and so on up to 3 levels in the salesperson table.
My first thought was to populate manager1 first and then use 2 different update statements to update manager 2 and 3. I felt bored to do that. Nor did I want to write a recursive query. I wanted to try something different and this is what I did:
I created a Table Valued (multi line) function even though it returned just 1 row - to return the managerid and managername for the emplid passed and used the function twice in the update statement.
All this was for testing purposes only and I honestly expected my query to perform badly. The salesperson table has 5500 records while the hr_view has 450,000 records.
The function fn_getmanager(emplid) returns a single record - the manager_emplid and manager_name from hr_view.
update sp
set
manager1 = v1.manager_name,
manager2 = m2.manager_name,
manager3 = m3.manager_name
from
salesperson sp,
hr_view v1,
fn_getmanager(v1.manager_emplid) m2,
fn_getmanager(m2.manager_emplid) m3
where
sp.emplid = v1.emplid
The update ran in 1 second. I exploded the salesperson table from 5000 to 1.2 million records and the update executed in 35 seconds.
I changed the multi line to an inline Table valued function and it took more than 2 minutes and I canceled the query.
Since it is recursion that I need ie since my function calls must return different values for every row and I really am not sure if I can benefit from doing a recursive query and populating a temp table or something. The row counts of my tables are not bound to increase in numbers any time soon PLUS I really liked the way my update statement reads - it is very clean.
MY QUESTION - why is the multi line TVF faster than inline? Is it because the function is used in the FROM clause and that they are not used in any joins? Should i really change the way the code is written so that the performance doesn't falter in the long run?