Timing Bind variable : Execute Immediate « PL SQL « Oracle PL / SQL






Timing Bind variable

  
SQL>
SQL>  alter system flush shared_pool;

System altered.

SQL>      set serveroutput on
SQL>      declare
  2          l_start number;
  3          l_cnt   number;
  4      begin
  5          l_start := dbms_utility.get_time;
  6
  7          for i in 1 .. 100
  8          loop
  9              execute immediate
 10             'select count(*) from dual where dummy = ''' || to_char(i) || '''' INTO l_cnt;
 11         end loop;
 12
 13         dbms_output.put_line( 'No Binds ' || (dbms_utility.get_time-l_start) || ' hsecs' );
 14         l_start := dbms_utility.get_time;
 15         for i in 1 .. 100
 16         loop
 17             execute immediate 'select count(*) from dual where dummy = :x'
 18             INTO l_cnt
 19             USING to_char(i);
 20         end loop;
 21         dbms_output.put_line( 'Binding ' || (dbms_utility.get_time-l_start) || ' hsecs' );
 22     end;
 23     /
No Binds 7 hsecs
Binding 1 hsecs

PL/SQL procedure successfully completed.

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.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