Declare
vTable Varchar2 (10);
Begin
vTable := 'part' || LPAD (value, 3, '0');
Insert into partition vTable...
End;