There are many reasons for the total to be >100% on the estimated plan. There was a problem in SSMS which caused this. However, it is still possible. Make sure you have the current version of SSMS installed.
Execution plan for table spool
Anyone saw any execution plan starting with a table spool ? and also it cost is grater than 100%
SQL Server | Other
3 answers
Sort by: Most helpful
-
CathyJi-MSFT 22,426 Reputation points Microsoft External Staff2021-07-06T06:22:31.203+00:00 Hi @sakuraime ,
Spool is a physical operator that shows up in the execution plan. Query optimizer uses spools when it thinks that it’s better to put data in the temp table rather than hitting a table again and again using seeks and scans.
Check if below blog could help you.
-
Erland Sommarskog 133.9K Reputation points MVP Volunteer Moderator2021-07-05T21:56:53.623+00:00 Spools typically appears in two places of a plan. One where it is being written to, and one where it is read.
Keep in mind that the costs are estimates, and nothing you should pay that much attention to.