Project

General

Profile

« Previous | Next » 

Revision 596

Added by bojilova over 23 years ago

enable the UNIQUE constraint in xml_catalog table

View differences:

src/xmltables.sql
183 183
	target_doctype	VARCHAR2(500),	-- the target public_id for transforms
184 184
	public_id	VARCHAR2(500),	-- the unique id for this type
185 185
	system_id	VARCHAR2(1000),	-- the local location of the object
186
   CONSTRAINT xml_catalog_pk PRIMARY KEY (catalog_id)
187
   -- CONSTRAINT xml_catalog_uk UNIQUE (entry_type, source_doctype, target_doctype, public_id)
186
   CONSTRAINT xml_catalog_pk PRIMARY KEY (catalog_id),
187
   CONSTRAINT xml_catalog_uk UNIQUE (entry_type, source_doctype, target_doctype, public_id)
188 188
);
189 189

  
190 190
CREATE SEQUENCE xml_catalog_id_seq;

Also available in: Unified diff