1. Open Test Window.
2. Example:
declare
i date;
begin
i := :test;
end;
3. Set the variable as Date and click the Now or OK button in the calendar.
4. The field is empty.
Hello,
Subpartitions are not shown in table view page.
Example:
create table test_subpartition
( type_id integer
, event_date timestamp(6) with local time zone
, value number
) partition by list (type_id)
subpartition by range (event_date)
(
partition p1 values (1)
(...