Project

General

Profile

1
/* These are indices that are currently missing from metacat and should
2
   be created and maintained in order to speed up searches.
3
*/
4
CREATE INDEX xml_access_principal_idx1 on xml_access (lower(principal_name))
5
/
6
CREATE INDEX xml_access_permtype_idx1 on xml_access (perm_type)
7
/
8
CREATE INDEX xml_access_permission_idx1 on xml_access (permission)
9
/
10
CREATE INDEX xml_nodes_idx4 ON xml_nodes (nodedata)
11
/
12
ALTER TABLE xml_index MODIFY (path varchar2(1000))
13
/
(10-10/11)