Using Excel 2013, SQLServer 2010.
I'd like to use a temp table in an OLE DB Query data connection. The Command text is something like this (very simplified):
select * into #temptable from SQLTableA
select * from #temptable
drop table #temptable
Are #temptables allowed for OLE DB queries?
I'd like to use a temp table in an OLE DB Query data connection. The Command text is something like this (very simplified):
select * into #temptable from SQLTableA
select * from #temptable
drop table #temptable
Are #temptables allowed for OLE DB queries?