Oracle8i interMedia Text Reference Release 2 (8.1.6) Part Number A77063-01 |
|
CTX_QUERY Package , 7 of 7
This procedure creates a stored query expression (SQE). Only the query definition is stored.
CTX_QUERY.STORE_SQE(query_name IN VARCHAR2, text_query IN VARCHAR2);
Specify the name of the SQE to be created. If you are CTXSYS, you can specify this as user.name
.
Specify the query expression to be associated with query_name.
begin ctx_query.store_sqe('disasters', 'hurricanes | earthquakes'); end;
SQEs support all of the Text query expression operators. SQEs also support all of the special characters and other components that can be used in a query expression, including other SQEs.
Users are allowed to create and remove SQEs owned by them. Users are allowed to use SQEs owned by anyone. The CTXSYS user can create or remove SQEs for any user.
|
![]() Copyright © 1996-2000, Oracle Corporation. All Rights Reserved. |
|