Humble Trader

Sunday, September 03, 2006

Get HTML - html_parse_passes_c.sql

-- ------------------------------------------------------------------------- --
-- --
-- Title: html_parse_passes_c.sql --
-- Author: Steve Roach --
-- Date: 25-JUL-2006 --
-- Version: 01.00 --
-- --
-- Description: Create constraints for table HTML_PARSE_PASSES. --
-- --
-- History: --
-- --
-- Date Ver Author Description --
-- --------- ----- ------ -------------------------------------------------- --
-- 25-JUL-06 01.00 SRR First release --
-- --
-- ------------------------------------------------------------------------- --

ALTER TABLE html_parse_passes DROP CONSTRAINT html_parse_passes_pk
/

ALTER TABLE html_parse_passes DROP CONSTRAINT html_parse_passes_f1
/

ALTER TABLE html_parse_passes ADD CONSTRAINT html_parse_passes_pk PRIMARY KEY
(
parse_run_no
,raw_run_no
) USING INDEX html_parse_passes_pk
/

ALTER TABLE html_parse_passes ADD CONSTRAINT html_parse_passess_f1
FOREIGN KEY
(
raw_run_no
) REFERENCES html_page_access(run_no)
/

0 Comments:

Post a Comment

<< Home