Hi All,
I am using SAP MII 14.0 SP4 patch 2. Most of my queries are calling the Store procedures. But my store procedures are not executing. The reason behind this I found , it was using "Insert Into statements". I tried the below query
1. declare @TempTable TABLE (
ID int,
Date datetime,
Name char(20))
INSERT INTO @TempTable (ID, Date, Name)
SELECT '1' as id, '2104-Mar-10' as Date,'par' as name
select * from @TempTable
2. Create table #TempTable (
ID int,
Date datetime,
Name char(20))
INSERT INTO #TempTable (ID, Date, Name)
SELECT '1' as id, '2104-Mar-10' as Date,'par' as name
select * from #TempTable
but this also not working. Can you please suggest me the solution?
Regards
G.Partheeban