MomentSurfer
IS-IT--Management
Greetings everyone,
I have a stored procedure that processes data and creates a temporary table to store the results. I wish to make the results available to other stored procedures and/or views (if possible) for the purpose of joining my results with other tables/views.
I do not want to include the JOIN inside my stored procedure that creates the temporary table. This is because the data it procedures is fairly common and the JOINS that need to happen vary based upon the needs of the application. For this reason I'd prefer to "layer" my approach.
Can this be done? I'd appreciate any direction you can provide.
I have a stored procedure that processes data and creates a temporary table to store the results. I wish to make the results available to other stored procedures and/or views (if possible) for the purpose of joining my results with other tables/views.
I do not want to include the JOIN inside my stored procedure that creates the temporary table. This is because the data it procedures is fairly common and the JOINS that need to happen vary based upon the needs of the application. For this reason I'd prefer to "layer" my approach.
Can this be done? I'd appreciate any direction you can provide.