kaye
Answered On : Aug 22nd, 2006
yes.use execute immediate.
Login to rate this answer.
yes
create procedure truncatetable(tname in varchar2) is
sqlstr varchar2(100);
begin
sqlstr := 'truncate table '||tname;
execute immediate sqlstr;
end;
Login to rate this answer.
Shital Mistry
Answered On : Aug 11th, 2012
It is not directly supported in forms, but FORMS_DDL built in can be used to TRUNCATE the table.
Login to rate this answer.