This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set serveroutput on; | |
set autoprint on; | |
declare | |
type t_temp_storage is table of varchar2(4000); | |
column_constraints t_temp_storage; | |
column_indexes t_temp_storage := t_temp_storage(); | |
column_indexes_names t_temp_storage; |