Skip to Main Content

SQL Developer

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

SQL Developer 19.1: Temporal Validity parse bug

Nikolay LoginovJul 3 2019 — edited Jul 4 2019

--drop table qz_product_price_history purge;

create table qz_product_price_history (

product_id integer not null,

start_date date not null,

end_date date,

unit_cost number(10, 2) not null,

primary key (

product\_id, start\_date

)

);

alter table qz_product_price_history

add period for prices ( start_date, end_date );

Correct syntax, but in SQL Developer 19.1:

pastedImage_1.png

https://docs.oracle.com/database/121/ADFNS/adfns_design.htm#ADFNS967

This post has been answered by Vadim Tropashko-Oracle on Jul 3 2019
Jump to Answer
Comments
Post Details
Added on Jul 3 2019
1 comment
427 views