execute immediate with 'insert ... using' to pass variable into insert statement : Execute Immediate « PL SQL « Oracle PL / SQL






execute immediate with 'insert ... using' to pass variable into insert statement

  
SQL>
SQL> create table t( c1 int, c2 int, c3 int, c4 int ) storage ( freelists 10 );

Table created.

SQL>
SQL> set echo on
SQL>
SQL>      declare
  2           myNumber number;
  3       begin
  4           for i in 1 .. 10
  5           loop
  6               myNumber := dbms_random.random;
  7
  8               execute immediate
  9               'insert into t values ( :x1, :x2, :x3, :x4 )'
 10                       using myNumber, myNumber, myNumber, myNumber;
 11           end loop;
 12           commit;
 13       end;
 14  /

PL/SQL procedure successfully completed.

SQL>
SQL> select * from t;
        C1         C2         C3         C4
---------- ---------- ---------- ----------
-215681493 -215681493 -215681493 -215681493
  65675438   65675438   65675438   65675438
-544483009 -544483009 -544483009 -544483009
 327912408  327912408  327912408  327912408
-233632941 -233632941 -233632941 -233632941
 623357100  623357100  623357100  623357100
 616373886  616373886  616373886  616373886
-703556128 -703556128 -703556128 -703556128
-928105331 -928105331 -928105331 -928105331
-179825426 -179825426 -179825426 -179825426

10 rows selected.

SQL>
SQL> drop table t;

Table dropped.

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.Timing Bind variable
6.Call 'execute immediate' to drop table, create table and insert data
7.EXECUTE IMMEDIATE
8.Use parameters in EXECUTE IMMEDIATE
9.Pass value out of dynamic select statement
10.Build up the CREATE TABLE statement and run it with EXECUTE IMMEDIATE
11.Use USING clause with EXECUTE IMMEDIATE to handle bind variables.
12.Use of EXECUTE IMMEDIATE for single-row queries.
13.Create Dynamic Tables
14.Call a stored procedure in dynamic script
15.demonstrates the effect of duplicate placeholders with EXECUTE IMMEDIATE.
16.how to pass a NULL value to EXECUTE IMMEDIATE.
17.Use native dynamic SQL to re-create MyTable.
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