REMOVE_SQE
The CTX_QUERY.REMOVE_SQE procedure removes the specified stored query expression.
CTX_QUERY.REMOVE_SQE can be used to remove both session-duration and persistent SQEs. See “STORE_SQE”.
Since the query_name namespace is shared between the persistent and session-duration SQEs, it is unnecessary to specify the duration of the SQE to be removed.
Syntax
CTX_QUERY.REMOVE_SQE(
query_name IN VARCHAR2
);
query_name
Specify the name of the stored or session-duration query expression to be removed.
Example
begin
ctx_query.remove_sqe('dis1');
ctx_query.remove_sqe('dis2');
end;
/