I would like to load data from the micros.sp_R_sys_menuitem_fam_grp stored procedure into a temporary table so I can run some queries on it. I tried:
but I get this error:
Is there a different way to do this? Thanks!
SQL:
select
*
into
#t_test_sp
from
micros.sp_R_sys_menuitem_fam_grp();
but I get this error:
Code:
COMMIT/ROLLBACK not allowed within atomic operation
Is there a different way to do this? Thanks!