oops its not workin, just another kst> how to use execute immediate? its not working for the above statements
oops its not workin, just another kst> how to use execute immediate? its not working for the above statements
Here is the example
Code:create or replace procedure test_proc as string varchar2(100); begin string := ' alter table test_data add constraint test_data_pk primary key (x)'; execute immediate string; end; /