We can set the temp table by execute procedure results. The below example might help you.
Table of Contents
1. Drop Temp table
2. Create Temp table
3. Insert into Temp Table form Store procedure
4. Select inserted data from Temp table.
execute stored procedure and set temp table in sql server 2008
Table of Contents
1. Drop Temp table
2. Create Temp table
3. Insert into Temp Table form Store procedure
4. Select inserted data from Temp table.
execute stored procedure and set temp table in sql server 2008
DROP TABLE #TempTable
CREATE TABLE #TempTable(Id INT, Services VARCHAR(300))
INSERT INTO #TempTable EXEC GET_SPLITED_TABLE 'ANIL-KUMAR-SINGH', '-'
SELECT * FROM #TempTable