Hi We are migrating to SP6 and having issue with the reports creating with free hand sql with the temp table.
like -
select
a.abc,
b.xyz
into #temp1
from
a inner join b on (a.id=b.id)
select * from #temp1
drop table #temp1
Can someone help if using the same feature , what are the changes they did with the environment .
Thanks.