24 lines
436 B
SQL
24 lines
436 B
SQL
-- Copyright 2018 Tanel Poder. All rights reserved. More info at http://tanelpoder.com
|
|
-- Licensed under the Apache License, Version 2.0. See LICENSE.txt for terms & conditions.
|
|
|
|
set echo on
|
|
|
|
declare
|
|
type tabtype is table of char(100);
|
|
t tabtype := NULL;
|
|
|
|
|
|
begin
|
|
|
|
select object_name
|
|
bulk collect into t
|
|
from dba_objects
|
|
order by lower(object_name);
|
|
|
|
|
|
dbms_lock.sleep(999999);
|
|
|
|
end;
|
|
/
|
|
|
|
set echo off |