The STOCK_QUOTE table stores
real-time (intraday) quotes. You may also want to modify this table to comment out the
constraint statement.
-
Locate the STOCK_QUOTE table.
-
Use double dashes to comment out the line that reads:
constraint PK_STOCK_QUOTE primary key
(INSTRUMENT_ID, QUOTE_DATE, QUOTE_SEQ_NBR) on o1
The line should now read:-- constraint PK_STOCK_QUOTE primary key
(INSTRUMENT_ID, QUOTE_DATE, QUOTE_SEQ_NBR) on o1