python-cx_Oracle/samples/tutorial/query_arraysize.sql
2017-10-13 19:14:39 -06:00

28 lines
695 B
SQL

-------------------------------------------------------------------------------
-- query_arraysize.sql (Section 3.5)
-------------------------------------------------------------------------------
/*-----------------------------------------------------------------------------
* Copyright 2017, Oracle and/or its affiliates. All rights reserved.
*---------------------------------------------------------------------------*/
set echo on
connect pythonhol/welcome@localhost/orclpdb
drop table bigtab;
create table bigtab (mycol varchar2(20));
begin
for i in 1..20000
loop
insert into bigtab (mycol) values (dbms_random.string('A',20));
end loop;
end;
/
show errors
commit;
exit