Hi Partick,
It seems like we can do updates on "Local Temporary Table" but we cannot do on "Local Temporary Column Table".
Just tried on the example from the previous thread on "Temporary Table"
CREATE PROCEDURE LARSEXAMPLE ( ) LANGUAGE SQLSCRIPT SQL SECURITY INVOKER AS /********* Begin Procedure Script ************/ BEGIN create local temporary table #mytemp (id integer, name varchar(20)); insert into #mytemp values (1, 'Lars'); update #mytemp set name = 'breddemann' where id = 1; select * from #mytemp; END; /********* End Procedure Script ************/
call larsexample;
But when i tried with local temporary column table , i get this "Feature not supported" message.
I wonder why such a limitation on "Column" temporary table. Am sure there would be an logical reason for this behavior. ( which i could not get it )
Regards,
Krishna Tangudu
Regards,
Krishna Tangudu