Use native dynamic SQL to re-create MyTable. : Execute Immediate « PL SQL « Oracle PL / SQL






Use native dynamic SQL to re-create MyTable.

  

SQL>
SQL>
SQL> CREATE TABLE MyTable (
  2    num_col    NUMBER,
  3    char_col   VARCHAR2(60)
  4    );

Table created.

SQL>
SQL> CREATE OR REPLACE PROCEDURE RecreateTempTable (
  2    p_Description IN VARCHAR2) IS
  3
  4    v_CreateString  VARCHAR2(100);
  5    v_DropString    VARCHAR2(100);
  6  BEGIN
  7    v_DropString := 'DROP TABLE MyTable';
  8
  9    BEGIN
 10      EXECUTE IMMEDIATE v_DropString;
 11    EXCEPTION
 12      WHEN OTHERS THEN
 13        IF SQLCODE != -942 THEN
 14          RAISE;
 15        END IF;
 16    END;
 17
 18    v_CreateString := 'CREATE TABLE MyTable ' || p_Description;
 19    EXECUTE IMMEDIATE v_CreateString;
 20  END RecreateTempTable;
 21  /

Procedure created.

SQL>
SQL> drop table MyTable;

Table dropped.

SQL>
SQL>

SQL>

   
  








Related examples in the same category

1.EXECUTE IMMEDIATE commands
2.Execute immediate for an insert statement
3.Use EXECUTE IMMEDIATE to call procedure and save the returning value
4.Use execute immediate to insert random numbers
5.execute immediate with 'insert ... using' to pass variable into insert statement
6.Timing Bind variable
7.Call 'execute immediate' to drop table, create table and insert data
8.EXECUTE IMMEDIATE
9.Use parameters in EXECUTE IMMEDIATE
10.Pass value out of dynamic select statement
11.Build up the CREATE TABLE statement and run it with EXECUTE IMMEDIATE
12.Use USING clause with EXECUTE IMMEDIATE to handle bind variables.
13.Use of EXECUTE IMMEDIATE for single-row queries.
14.Create Dynamic Tables
15.Call a stored procedure in dynamic script
16.demonstrates the effect of duplicate placeholders with EXECUTE IMMEDIATE.
17.how to pass a NULL value to EXECUTE IMMEDIATE.
18.Use DBMS_SQL to re-create MyTable.
19.execute immediate using variable
20.Create dynamic sql statement and get the result
21.Dynamically create packages
22.Use execute immediate to create dynamic query in a procedure
23.Performance between using statement and string concatenation for dynamic sql