For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!
create or replace procedure Pro_Tbl_Cre( P_TBL_NAME IN VARCHAR2) is BEGIN EXECUTE IMMEDIATE 'CREATE TABLE '||P_TBL_NAME||' (Empname VARCHAR2(100), EmpId Number)'; End; I'm facing error. How to write it properly?