BubikolRamios
02-17-2009, 12:16 PM
suppose I have stored proc:
drop table if exists tbl;
create table tbl ... engine memory
do
/*fill data, manipulate data in tbl, takes a while*/
loop
1.I presume that there should be no prob if multiple users would do this at once, as each time for each procedure call , new separate copy of tbl would be created in mem ?
2. if this would be done without engine memory then this would be realy catastrophic ?
drop table if exists tbl;
create table tbl ... engine memory
do
/*fill data, manipulate data in tbl, takes a while*/
loop
1.I presume that there should be no prob if multiple users would do this at once, as each time for each procedure call , new separate copy of tbl would be created in mem ?
2. if this would be done without engine memory then this would be realy catastrophic ?