I have a one stored procedure which executes the t-sql statement using sp_executesql.
This t-sql code recompiles for everytime it runs using "INSERT INTO" but when I use "INSERT" only it will not recompile. What is going on here? :w00t:
Here is sample:
create table #test (id int)
Recompile:
insert into #test select id from mytable
Not Recompile:
insert #test select id from mytable
Software/Hardware used:
SQL Server 2008