Actually I have the solution with proxy table from sp with loopback server. but it has a performance problem. So I am looking for a solution to replace this proxy table.
I can create a physical table to hold the result from sp same as proxy table, but the difference is:
proxy table can call the sp automatically every time when you issue select from this table.
but with physical table solution, it is a empty table, like a place holder. So I want to the table have the data every time when use issue select from this table, then I need to call the sp to fill up data in this table manually. Not sure how to fill data automatically when anyone acccess this physical table.